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

Create Session

{% csrf_token %} {{ form|as_crispy_errors }} {% for field in form %} {% if field.html_name != "invite_text" and field.html_name != "email" %} {{ field|as_crispy_field }} {% endif %} {% endfor %}
Advanced Options
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 }}

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