{% extends "imports/base.html" %} {% load i18n %} {% load dashboard_tags %} {% block title %}Import Users{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% dashboard_nav user %}

{% trans "Preview Your Import" %}

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

{{ file_name }}

{{ file_name }}

  • {{ total }} {% trans "Total Users" %}
  • {{ count_insert }} {% trans "Insert" %}
  • {{ count_update }} {% trans "Update" %}
  • {{ count_invalid}} {% trans "Invalid Users" %}
{% trans "ID Duplicates by:" %} {{ key }}
{% trans "Interactive Status:" %} {{ interactive }}
{% trans "User Group:" %} {{ group.name }}
{% trans "Update: " %} {{ str_update }}
{% csrf_token %}
{% for u in users_list %} {%if not u.IS_VALID %}

{% trans "Row" %} {{ u.ROW_NUM }} - {{ u.ERROR }}

{% trans "This user will be ignored (not added or updated)" %}
{% else %} {% if u.ACTION == 'insert' %}
{% trans "INSERT:" %}
{% else %} {% trans "UPDATE" %} {% endif %}
  {% if u.ACTION == 'update' %} {{ u.first_name }} {{u.last_name }} {% else %} {{ u.first_name }} {{u.last_name }} {% endif %} {% if u.username %} ({{ u.username }}) {% endif %}  
  {% trans "Email: " %} {{ u.email }}  
{% endif %} {% endfor %}
{% endblock %}