{% extends "admin/base_site.html" %} {% load model_names %} {% block content %}
{% csrf_token %} {{ item_formset.management_form }} {% for form in item_formset %} {{ form }} {% endfor %}

Select up to ten {% model_name_plural child_model %} to {% if is_removal %}remove from{% else %}add to{% endif %} the {% model_name_plural parent_model %} below:

{% for parent in parent_queryset %} {% endfor %}

{% filter capfirst %}{% model_name_plural child_model %}{% endfilter %} will be {% if is_removal %}removed from{% else %}added to{% endif %} the following {% model_name_plural parent_model %}:

{{ parent }}
{% endblock %}