{% extends "user_groups/base.html" %} {% load user_group_tags %} {% load base_tags %} {% load perm_tags %} {% load styled_forms %} {% load i18n %} {% block title %}{% firstof MODULE_EVENTS_LABEL_PLURAL 'User Groups' %} {% trans "Import" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% user_group_nav request.user %}

{% trans "Import Groups Process" %}

{% if import_i.status == "pending" %} {% trans "We're not done yet! This page will be updated as your groups are imported." %} {% endif %}

{% trans "Import ID" %}: {{ import_i.id }}

{% trans "File" %}: {{ import_i.file.name }}

{% trans "Status" %}: {{ import_i.status }}

{% if import_i.status == "completed" %}

{% trans "Import complete!" %} {% trans "View groups list." %} {% endif %} {% if import_i.status == "failed" %}

{% trans "Failure Reason" %} {{ import_i.failure_reason }}

{% endif %}

{% trans "Total Groups Created" %}: {{ import_i.total_created }}

{% endblock %} {% block extra_body %} {{ block.super }} {% if import_i.status == "pending" %} {% endif %} {% endblock %}