{{ event.title }}
{%- trans %}Registrants Book{% endtrans -%}
{%- trans %}Table of Contents{% endtrans -%}
{% for (registration, __) in rows %}
{{ registration.display_full_name }}
{{ loop.index }}
{% endfor %}
{% for (registration, row) in rows %}
{{ event.title }} / {% trans %}Registrants Book{% endtrans %}
{{ registration.display_full_name }}
{{ registration.display_full_name }}
#{{ registration.friendly_id }}
{%- trans %}Registration details{% endtrans -%}
{% for header in headers if header is string and row[header] %}
{{ header }}:
{{ row[header] }}
{% endfor %}
{%- trans %}Personal details{% endtrans -%}
{% for header in headers if header is not string and row[header] %}
{{ header[0] }}:
{{ row[header] }}
{% endfor %}
{% endfor %}