{% 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 "Preview Your Import" %}

{% trans "You're almost done! To complete your import click 'Import Now.'" %}

{{ import_i.file.name }}

{{ import_i.file.name }}

  • {{ total }} {% trans "Total User Groups" %}
  • {{ import_i.total_created }} {% trans "Valid Groups" %}
  • {{ import_i.total_invalid}} {% trans "Invalid Groups" %}
{% for group in user_groups_list %}
{% trans "Row" %} {{ group.ROW_NUM }} - {{ group.name }}
{% if not group.IS_VALID %} {% trans 'ERROR' %}: {{ group.ERROR }}
{% trans "This group will be ignored (not added)" %} {% else %} {% trans "This group will be included" %} {% endif %}
Label: {{ group.label }}
Type: {{ group.type }}
Description: {{ group.description }}
{% endfor %}
{% csrf_token %}
{% endblock %}