{% extends "admin/change_form.html" %} {% load i18n admin_static admin_modify %} {% block content %}
{% csrf_token %} {% if form.non_field_errors|length > 0 %}

{% trans "Please correct the errors below." %}

{{ form.non_field_errors }} {% endif %} {% blocktrans with username=retirement.user.username %}Are you sure you want to cancel retirement for user "{{ username }}"? {% endblocktrans %}
{% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endfor %}
{% endblock %}