{% extends "manage/base.html" %} {% load i18n base_tags breadcrumbs %} {% block extrahead %} {% endblock %} {% block breadcrumbs %} {% if collection %} {% breadcrumbs collection.collectiongroup collection "Collection edit:" %} {% else %} {% breadcrumbs "Collections:.." "Collection add:" %} {% endif %} {% endblock %} {% block content %}

{% if collection %}{% trans "Collection edit" %}{% else %}{% trans "Collection add" %}{% endif %}

{% csrf_token %}

{% trans "Collection data" %}

{{ form }}

{% trans "Collection fields" %}

{{ form.field_formset.management_form }} {% for field_form in form.field_formset.forms %} {% for field in field_form %} {% endfor %} {% for field in field_form %} {% endfor %} {% endfor %}
{% if not field.is_hidden %} {{ field.label }} {% endif %}
{{ field.errors }}{{ field }}
{% trans "Add new field" %}
{% endblock %}