{% extends 'transfers/base.html' %} {% block h1_title %}{{organization}} PREMIS Rights Statement{% endblock %} {% block content %}

Rights Basis

{% csrf_token %}
{{ basis_form.management_form }} {{ basis_form.non_form_errors }} {% include 'rights/form_fields.html' with form=basis_form %} {% for field in basis_form.hidden_fields %} {{field}} {% endfor %}
{{ license_form.management_form }} {{ license_form.non_form_errors }} {% for form in license_form %} {% include 'rights/form_fields.html' with form=form %} {% endfor %}
{{ statute_form.management_form }} {{ statute_form.non_form_errors }} {% for form in statute_form %} {% include 'rights/form_fields.html' with form=form %} {% endfor %}
{{ other_form.management_form }} {{ other_form.non_form_errors }} {% for form in other_form %} {% include 'rights/form_fields.html' with form=form %} {% endfor %}
{% if granted_formset %}

{% include 'rights/rights_basis_info.html' with object=rights_statement %}

Rights Granted or Restricted

{{ granted_formset.non_form_errors }} {{ granted_formset.management_form }} {% for form in granted_formset %}
{% include 'rights/form_fields.html' with form=form %}
{% endfor %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}