{% extends 'events/management/base.html' %} {% from 'forms/_form.html' import form_header, form_footer, form_rows %} {% from 'message_box.html' import message_box %} {% block title %} {% trans %}Group registration{% endtrans %} {% endblock %} {% block subtitle %} {{ regform.title }} {% endblock %} {% block content %} {% if settings and settings.enabled %}
{% endif %} {% call message_box('info') %} {% trans -%} Participants choose a plan when they register, get a code and a join link to share, and pay that plan's rate straight away. A group confirms itself once its plan's seat count is filled. If it never fills, the plugin reprices it at the reconciliation deadline -- and members who already paid will owe the difference, which somebody has to collect. {%- endtrans %} {% endcall %} {{ form_header(form, action=url_for_plugin('group_registration.manage_settings', regform)) }} {{ form_rows(form) }} {% call form_footer(form) %} {% endcall %} {% endblock %}