{% load base_filters %} {% load i18n %} {% with obj.registrant_set.all as registrants %} {% if registrants %} {% for reg in registrants %} {% if reg.user %} {% endif %} {% if reg.get_name %} {{ reg.get_name }} {% else %} {% trans "Guest #" %}{{ forloop.counter0 }} {% endif %} {% if reg.email %} ({{ reg.email }}) {% endif %} {% if reg.user %} {% endif %} {% if reg.custom_reg_form_entry %} {% with reg.custom_reg_form_entry.roster_field_entry_list as roster_field_list %} {% for field in roster_field_list %} {% if field.value %}
{{ field.label }}: {{ field.value }}
{% endif %} {% endfor %} {% endwith %} {% endif %} {{ reg.amount|format_currency }} {% endfor %} {% endif %} {% endwith %} {% with obj.regaddon_set.all as regaddons %} {% if regaddons %} {% for regaddon in regaddons %} {{ regaddon.addon.title }} ({% for regoption in regaddon.regaddonoption_set.all %}{{ regoption.option.title }}{% if not forloop.last %},{% endif %}{% endfor %}) {{ regaddon.amount|format_currency }} {% endfor %} {% endif %} {% endwith %}