{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_modify %} {% block title %}Bulk User Upload | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block extrahead %} {{ block.super }} {% if is_popup %} {% endif %} {% endblock extrahead %} {% block content %}

Bulk Upload Users

{% csrf_token %} {% if is_popup %}{% endif %} {% if form.errors %}

{% if errors|length == 1 %}{% translate "Please correct the error below." %}{% else %} {% translate "Please correct the errors below." %}{% endif %}

{{ form.form.non_field_errors }} {% endif %} {% if errors %} {{ errors|safe }} {% endif %} {% if warnings %} {{ warnings|safe }} {% endif %} {% if created_users %} {{ created|safe }} {% endif %} {% block field_sets %} {% for fieldset in form %} {% include "admin/includes/fieldset.html" %} {% endfor %} {% endblock %} {% block submit_buttons_bottom %}
{% endblock %}
{% endblock content %}