{% extends 'events/management/base.html' %} {% from 'message_box.html' import message_box %} {% block title %} {% trans %}Group registration{% endtrans %} {% endblock %} {% block content %} {% if not rows %} {% call message_box('info') %} {% trans %}This event has no registration forms yet.{% endtrans %} {% endcall %} {% else %} {% for row in rows %} {% endfor %}
{% trans %}Registration form{% endtrans %} {% trans %}Group registration{% endtrans %} {% trans %}Groups{% endtrans %}
{{ row.regform.title }} {% if row.settings and row.settings.enabled %} {% trans %}Enabled{% endtrans %} {% else %} {% trans %}Off{% endtrans %} {% endif %} {{ row.group_count or '' }} {% trans %}Configure{% endtrans %} {% if row.settings and row.settings.enabled %} {% trans %}Groups{% endtrans %} {% endif %}
{% endif %} {% endblock %}