{% extends 'management/base.html' %} {% load static %} {% load crispy_forms_filters %} {% block content %}

Import Voters from CSV File

This page can be used to add voters via a CSV file. The file needs to have two columns email and name. The content of an exemplary CSV file is shown below:

email,name
erika.musterfrau@stusta.de,Erika Musterfrau
max.mustermann@stusta.de,Max Mustermann


{% csrf_token %} {{ form|crispy }} Cancel
{% endblock %}