{% extends 'events/management/base.html' %} {% block title %} {%- trans %}Participants{% endtrans -%} {% endblock %} {% block content %}
{% if regform and not registration_enabled %} {{ render_feature_disabled() }} {% elif not regform %} {{ render_no_regform() }} {% endif %}
{% endblock %} {% macro render_feature_disabled() %}
{% trans %}The registration feature is disabled{% endtrans %}
{% trans -%} Participants are now handled through a registration form. {%- endtrans %}
{% trans %}Enable{% endtrans %}
{% endmacro %} {% macro render_no_regform() %}
{% trans %}There is no registration form for participants{% endtrans %}
{% trans -%} Participants are now handled through a registration form. {%- endtrans %}
{% trans %}Create{% endtrans %}
{% endmacro %}