22 lines
814 B
HTML
22 lines
814 B
HTML
|
{% extends "participant/base_participant.html" %}
|
||
|
{% block title %}{{ block.super }} - {%trans "Participant Import" %} {% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Import</h1>
|
||
|
<p>{% trans 'Select a CSV file to import participants!' %}</p>
|
||
|
|
||
|
<p>{% trans '(Required comma separated values: <code>last_name, first_name, email, gender, group, type, committee</code>)' %} </p>
|
||
|
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">
|
||
|
<span class="icon import">{%trans 'Import' %}</span>
|
||
|
</button>
|
||
|
<a href="{% url user_overview%}">
|
||
|
<button type="button">
|
||
|
<span class="icon cancel">{%trans 'Cancel' %}</span>
|
||
|
</button>
|
||
|
</a>
|
||
|
</form>
|
||
|
</p>
|
||
|
{% endblock %}
|