blob: d09ae22d881b7f84f60482b88d3d4664457da190 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "ishtar/forms/base_related_items.html" %}
{% load i18n %}
{% block form_head %}
{{ block.super }}
{% if form.too_many %}
<div class="alert alert-warning">
{% trans "Many items are attached to this geographic item. Only the ten first of each type are displayed in this form." %}
</div>
{% endif %}
{% endblock %}
|