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

{{ session.title }}

Add Election {% if session.meeting_link %}
Meeting on {{ session.meeting_link }} {% endif %}
{% for election in elections %}
{{ election.title }} {% if not election.started and election.start_date %} Starts at {{ election.start_date|date:"Y-m-d H:i:s" }} {% elif not election.started %} Needs to be started manually {% elif election.is_open and election.end_date %} Open until {{ election.end_date|date:"Y-m-d H:i:s" }} {% elif election.closed %} Closed {% else %} Open, needs to be closed manually {% endif %}
{% endfor %}

Voters Import from CSV Add Tokens Add Voters


{% for voter in voters %} {% endfor %}
E-Mail
{{ voter }}
{% csrf_token %}
Download Tokens
{% for election in elections %} {% endfor %} {% endblock %}