34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% extends "participant/base_participant.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{{ block.super }} – {% trans "Import participants" %} {% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{% trans 'Import participants' %}</h1>
|
||
<p>{% trans 'Select a CSV file to import participants!' %}</p>
|
||
|
||
<p>{% trans 'Required comma separated values: <code>{first_name, last_name, gender, group, type, committee, comment}</code>' %}
|
||
<br>
|
||
{% trans 'Required CSV file encoding: UTF-8 (Unicode).' %}
|
||
</p>
|
||
|
||
<p><a href="http://dev.openslides.org/wiki/CSVImport" target="_blank">{% trans 'A CSV example file is available in OpenSlides Wiki.' %}</a>
|
||
</p>
|
||
|
||
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
|
||
{{ form.as_p }}
|
||
<p>
|
||
<button class="button" type="submit">
|
||
<span class="icon import">{% trans 'Import' %}</span>
|
||
</button>
|
||
<a href="{% url user_overview%}">
|
||
<button class="button" type="button" onclick="window.location='{% url user_overview %}'">
|
||
<span class="icon cancel">{% trans 'Cancel' %}</span>
|
||
</button>
|
||
</a>
|
||
</p>
|
||
<small>* {% trans "required" %}</small>
|
||
</form>
|
||
{% endblock %}
|