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

Session Settings

{% csrf_token %} {{ form|as_crispy_errors }} {{ form.start_date|as_crispy_field }} {{ form.meeting_link|as_crispy_field }}
Advanced Options
Additional election managers
To add an additional election manager to this session enter his/her username in the following field. This means he/she will also have full access to this session and be able to modify it, create new elections as well as add new voters to it.
Current election managers are:
{% for manager in session.managers.all %}
{{ manager.username }}{% if manager.username == user.username %} (you){% endif %}
{% endfor %}
{{ form.add_election_manager|as_crispy_field }}
Invite email template text
The template has be written the python format string format. The following variables are available:
{% for key, val in variables.items %} {% endfor %}
Name Meaning
{{ key }} {{ val }}
Here is an example:

Dear,

You have been invited to our awesome meeting {title}. We are meeting on {meeting_link}. It takes place on the {start_date_en} at {start_time_en}. You can login with the following link: <a href="{login_url}">{login_url}</a>. You can also use the following access code on {base_url}: {access_code}

Best regards,
Your awesome Organizers

{{ form.invite_text|as_crispy_field }}


Send test mail
{{ form.email|as_crispy_field }}

{% endblock %} {% block footer_scripts %} {% endblock %}