{% extends "layout_fluid.html" %} {% load breadcrumb %} {% load i18n %} {% load static %} {% block js %} {% endblock %} {% block content %}
{% trans "Ingest" as ingest_label %} {% trans "Rights" as rights_label %} {% trans "Transfer" as transfer_label %} {% trans "Edit" as edit_label %} {% trans "Add" as add_label %}

{{ rights_label }}
{{ name }}

{% if request.method == 'POST' %} {% if form.is_valid %}

{% trans "Saved" %}

{% else %}

{% trans "An error has occurred." %}

{% endif %} {% endif %} {% if new_content_type_created %}
{% if new_content_type_created == 'other' %}

{% trans "New content added." %}

{% else %}

{% blocktrans with type=new_content_type_created %} New content added: {{ type }}. {% endblocktrans %}

{% endif %}
{% endif %} {% if section == 'ingest' %} {% if id %}
{% else %} {% endif %} {% else %} {% if id %} {% else %} {% endif %} {% endif %} {% csrf_token %} {% include "_form.html" %}
{{ statuteFormset.management_form }} {{ statuteFormset.non_form_errors.as_ul }} {% for form in statuteFormset %}
{% include "_form.html" %}
{% trans "Type" %}
{% trans "Value" %}
{% trans "Role" %}
{% endfor %}
{{ licenseFormset.management_form }} {{ licenseFormset.non_form_errors.as_ul }} {% for form in licenseFormset %} {% include "_form.html" %}
{% trans "Type" %}
{% trans "Value" %}
{% trans "Role" %}
{% endfor %}
{{ otherFormset.management_form }} {{ otherFormset.non_form_errors.as_ul }} {% for form in otherFormset %} {% include "_form.html" %}
{% trans "Type" %}
{% trans "Value" %}
{% trans "Role" %}
{% endfor %}
{% if section == 'ingest' %} {% trans "Cancel" %} {% else %} {% trans "Cancel" %} {% endif %}
{% endblock %}