{% if line.addon_to %}
+
{% endif %}
{{ line.item.name }}
{% if line.variation %}
– {{ line.variation }}
{% endif %}
{% if line.seat %}
{{ line.seat }}
{% endif %}
{% if line.voucher %}
{% trans "Voucher code used:" %} {{ line.voucher.code }}
{% endif %}
{% if line.subevent %}
{{ line.subevent.name }} · {{ line.subevent.get_date_range_display }}
{% if event.settings.show_times %}
{{ line.subevent.date_from|date:"TIME_FORMAT" }}
{% endif %}
{% endif %}
{% if line.issued_gift_cards %}
{% for gc in line.issued_gift_cards.all %}
{% trans "Gift card code" %}
{{ gc.secret }}
{% endfor %}
{% endif %}
{% if line.has_questions %}
{% if line.item.admission and event.settings.attendee_names_asked %}
{% trans "Attendee name" %}
{% if line.attendee_name %}{{ line.attendee_name }}{% else %}{% trans "not answered" %}{% endif %}
{% endif %}
{% if line.item.admission and event.settings.attendee_emails_asked %}
{% trans "Attendee email" %}
{% if line.attendee_email %}{{ line.attendee_email }}{% else %}{% trans "not answered" %}{% endif %}
{% endif %}
{% if line.item.admission and event.settings.attendee_addresses_asked %}
{% endif %}
{% if line.item.admission and event.settings.attendee_company_asked %}
{% trans "Attendee company" %}
{% if line.company %}{{ line.company }}{% else %}{% trans "not answered" %}{% endif %}
{% endif %}
{% if line.item.admission and event.settings.attendee_addresses_asked %}
{% trans "Attendee address" %}
{% if line.street or line.zipcode or line.city or line.country %}
{{ line.street|default_if_none:""|linebreaksbr }}
{{ line.zipcode|default_if_none:"" }} {{ line.city|default_if_none:"" }}
{{ line.country.name|default_if_none:"" }}
{% if line.state %} {{ line.state }}{% endif %}
{% else %}
{% trans "not answered" %}
{% endif %}