{% extends 'events/management/base.html' %} {% from 'message_box.html' import message_box %} {% block title %} {%- trans %}Registration{% endtrans -%} {% endblock %} {% block description %} {% trans -%} Registration forms allow people to register for the event. {%- endtrans %} {% endblock %} {% block content %} {% if not event.has_feature('payment') %} {% block payments_disabled_box %}
{% trans %}Payments disabled{% endtrans %}
{% trans %}Payments are disabled for this event{% endtrans %}
{% if event.can_manage(session.user) %} {% endif %}
{% endblock %} {% endif %} {% block global_registration_actions_box %}
{% trans %}Registration managers{% endtrans %}
{% trans %}Add/remove users allowed to manage registrations{% endtrans %}
{% trans %}Participant list{% endtrans %}
{% trans %}Define how the participant list will be shown on the event page{% endtrans %}
{% block tags_section %}
{% trans %}Registration tags{% endtrans %}
{% trans %}Create tags to mark and filter registrations{% endtrans %}
{% endblock %}
{% endblock %} {{ template_hook('extra-registration-settings', event=event) }}

{% trans %}List of registration forms{% endtrans %}

{% for regform in regforms %}
{{ regform.title }}
{% block delete_regform_button scoped %}
{% endblock %}
{% else %} {%- call message_box('info', fixed_width=true) -%} {% trans %}There are no registration forms yet.{% endtrans %} {%- endcall %} {% endfor %}
{% block create_form_button %} {%- trans %}Create form{% endtrans -%} {% endblock %}
{% endblock %}