{% if event.type == 'conference' %}
{% extends 'events/registration/display/_event_registration_base.html' %}
{% else %}
{% extends 'events/registration/display/_meeting_registration_base.html' %}
{% endif %}
{% from 'message_box.html' import message_box %}
{% block title %}
{{- page_title -}}
{% endblock %}
{% block subtitle %}
{% if num_participants %}
{%- trans num=num_participants %}1 participant{% pluralize %}{{ num }} participants{% endtrans -%}
{% endif %}
{% endblock %}
{% block description %}
{%- if tables|length > 1 -%}
{% trans -%}
The lists of participants grouped by the registration form they used to register for the event.
{%- endtrans %}
{%- endif -%}
{% endblock %}
{% macro table_header(columns, show_checkin) %}
{% if show_checkin %}
{% endmacro %}
{% macro table_row(registration, show_checkin) %}
{% endif %}
{% for column in columns %}
{{ column }}
{% endfor %}