{% extends "webui/collections/base.html" %} {% load webui_tags %} {% block title %}EDIT | {{ collection.title }}{% endblock %} {% block breadcrumbs %}{{ block.super }} {% breadcrumbs collection "Edit" %} {% endblock breadcrumbs %} {% block content %}

{{ collection.id }} {% if collection.title %}— {{ collection.title }}{% endif %}

EDIT

{% if form.errors %}

Form contains errors — see below

{% endif %}
{% csrf_token %} {{ form.as_table }}
{{ collection.id }}
{% if form.tracebacks %}

Form field error tracebacks

{% for fieldname,traceback in form.tracebacks.iteritems %} {% endfor %}
{{ traceback|safe|linebreaks }}
{% endif %} {% if collection.model_def_fields_removed %}
{{ collection.model_def_fields_removed_msg }}
{% endif %} {% if collection.model_def_fields_added %}
{{ collection.model_def_fields_added_msg }}
{% endif %} {% if collection.model_def_commits_msg %}
{{ collection.model_def_commits_msg }}
{% endif %}
{% endblock content %}