{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

Select Receiver Collection

{% csrf_token %}
{% if errors %}

{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{{ adminform.form.non_field_errors }} {% endif %}
{{ line.errors }} {% for field in adminform %} {% if field.is_checkbox %} {{ field.field }}{{ field.label_tag }} {% else %} {{ field.label_tag }} {% if field.is_readonly %}

{{ field.contents }}

{% else %} {{ field }} {% endif %} {% endif %} {% if field.field.field.help_text %}

{{ field.field.field.help_text|safe }}

{% endif %}
{% endfor %}
{% if adminform and add %} {% endif %}
{% endblock %}