{% extends "infrablue/base.html" %} {% load i18n material_form %} {% block page_title %} {% trans "Join Meeting" %} {{ meeting.pk }}: {{ meeting.name }} {% endblock page_title %} {% block browser_title %} {% trans "Join Meeting" %} {{ meeting.pk }}: {{ meeting.name }} {% endblock browser_title %} {% block content %}
{% csrf_token %}

{% blocktrans with meeting=meeting.name %} You have been invited to join the meeting {{ meeting }}. To join, press the "join" button below. {% endblocktrans %}

{% if attendee_pw_form %} {% form form=attendee_pw_form %}{% endform %} {% endif %} {% if moderator_pw_form %} {% form form=moderator_pw_form %}{% endform %} {% endif %} {% if user_form %} {% form form=user_form %}{% endform %} {% endif %}
{% include "infrablue/snippets/meeting_information.html" %}
{% trans "This setting is currently turned off." as trans_off %} {% trans "This setting is currently turned on." as trans_on %}
{% with trans_on|add:","|add:trans_off as yesno_text %} {% for column in card_properties %}
{% for property, icons in column %} {% include "infrablue/property_card.html" %} {% endfor %}
{% endfor %} {% endwith %}
{% endblock %}