{% extends "base.html" %} {% block title %}ASA: {{midway.name}}: upload assignments{% endblock %} {% block content %}

{{midway.name}}: upload assignments

{% if uploaded %}

Results

New entries added ({{found|length}})

{% for assignment in found %} {% endfor %}
Group Table
{{assignment.group}} {{assignment.location}}
{% for issue, cases in issues.items %}

Issue: {{issue}} ({{cases|length}})

{% for name, email, table in cases %} {% endfor %}
Name Email Table
{{name}} {{email}} {{table}}
{% endfor %} {% endif %}

Input

Include columns "Group", "officers", and "Table". Matching is done on "Group", so try to ensure that your names match the database's.

{% csrf_token %} {{ form.as_table }}

You may wish to modify the assignments or view the map.

{% endblock %}