{% 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.start_date %} Not started yet {% elif election.is_open %} Open {{ election.start_date|date:"H:i" }} - {{ election.end_date|date:"H:i" }} {% elif election.closed %} Closed {% endif %}
{% endfor %}

Voters Add Voters


{% for voter in voters %} {% endfor %}
E-Mail
{{ voter.email }}
{% csrf_token %}
{% for election in elections %} {% endfor %} {% endblock %}