{% extends "management/base.html" %} {% load lucide i18n %} {% block heading %}{% trans "Review import" %}{% endblock heading %} {% block panel %} {% if not season %}
{% blocktrans count counter=valid_count %}{{ counter }} member will be created.{% plural %}{{ counter }} members will be created.{% endblocktrans %} {% if skipped_count %}{% blocktrans count counter=skipped_count %}{{ counter }} row will be skipped.{% plural %}{{ counter }} rows will be skipped.{% endblocktrans %}{% endif %}
| {% trans "Row" %} | {% trans "Last name" %} | {% trans "First name" %} | {% trans "Email" %} | {% trans "Family" %} | {% trans "Outcome" %} |
|---|---|---|---|---|---|
| {{ result.line_number }} | {{ result.raw.last_name }} | {{ result.raw.first_name }} | {{ result.raw.email }} | {% if result.family_group %} {{ result.family_group }} {% if result.family_role %}{{ result.family_role|capfirst }}{% endif %} {% else %} - {% endif %} |
{% if result.member %}
{% trans "Will create" %}
{% else %}
{% trans "Skipped" %}
{{ result.errors|join:"; " }}
{% endif %}
|
| {% trans "No rows found in the uploaded file." %} | |||||