{% extends 'events/management/base.html' %} {% from 'message_box.html' import message_box %} {% block title %} {%- trans %}Registration tags{% endtrans -%} {% endblock %} {% block description %} {% trans -%} Create registration tags to mark and filter registrations. {%- endtrans %} {% endblock %} {% macro render_tags(tags) %} {% endmacro %} {% block content %}
{%- trans %}Registration Tags{% endtrans -%}
{% if event.registration_tags %}
{{ render_tags(event.registration_tags) }}
{% else %}
{% trans %}There are no tags.{% endtrans %}
{% endif %}
{% endblock %}