{% extends 'events/registration/management/_regform_base.html' %} {% block content %} {% if regform.is_purged %} {%- call message_box('error', fixed_width=true) -%} {% trans %}Registrations have been deleted due to an expired retention period.{% endtrans %} {%- endcall %} {% elif regform.retention_period %} {%- call message_box('warning', fixed_width=true) -%} {% trans count=(regform.retention_period.days // 7), date=(event.end_dt + regform.retention_period)|format_date %} Registrations will be permanently deleted {{ count }} week after the event ended (on {{ date }}). {% pluralize %} Registrations will be permanently deleted {{ count }} weeks after the event ended (on {{ date }}). {% endtrans %} {%- endcall %} {% endif %} {% block regform_state %} {% if not regform.has_started %} {% include 'events/registration/management/regform_actions/not_started.html' %} {% elif regform.is_open %} {% include 'events/registration/management/regform_actions/open.html' %} {% elif regform.has_ended %} {% include 'events/registration/management/regform_actions/ended.html' %} {% endif %} {% endblock %} {% block regform_setup_box %}
{% trans %}General settings{% endtrans %}
{% trans %}Edit settings for this form.{% endtrans %}
{% trans %}Registration Form{% endtrans %}
{% trans %}Add, remove or modify information registrants may fill out.{% endtrans %}
{% trans %}Privacy settings{% endtrans %}
{% trans %}Choose who can see the participants of this event.{% endtrans %}
{% endblock %}
{% trans %}List of registrations{% endtrans %}
{% trans %}Add, remove or modify registrations.{% endtrans %}
{% block registrations_count_label %} {{ regform.existing_registrations_count }} {%- if regform.registration_limit %} / {{ regform.registration_limit }} {%- endif -%} {% endblock %}
{% set purged_title %} {% trans %}Registration is disabled due to an expired retention period{% endtrans %} {% endset %} {% trans %}Manage{% endtrans %}
{% block invitations_section %}
{% trans %}Invitations{% endtrans %}
{% trans %}Manage invitations to register for your event.{% endtrans %}
{% endblock %} {% block ticket_config_section %}
{% trans %}Tickets{% endtrans %}
{% trans %}Configure ticketing system{% endtrans %}
{% endblock %}
{{ template_hook('extra-regform-settings', regform=regform) }}
{% block regform_stats_button %} {% trans %}Stats{% endtrans %} {% endblock %}
{% endblock %}