{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {{ form.media }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% translate "Make a choice" %}

{% csrf_token %} {{ form.non_field_errors }}
{% for field in form %}
{% if field.errors %}{{ field.errors }}{% endif %} {% if field.use_fieldset %} {{ field.legend_tag }}
{{ field }}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}
{% else %}
{{ field.label_tag }} {{ field }}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% endif %}
{% endfor %}
{% endblock %}