{% 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 "No attendee name provided" %}{% endif %}
{% endif %}
{% if line.item.admission and event.settings.attendee_emails_asked and line.attendee_email %}
{% trans "Attendee email" %}
{{ line.attendee_email }}
{% endif %}
{% if line.item.admission and event.settings.attendee_addresses_asked %}
{% endif %}
{% if line.item.admission and event.settings.attendee_company_asked and line.company %}
{% trans "Attendee company" %}
{{ line.company }}
{% endif %}
{% if line.item.admission and event.settings.attendee_addresses_asked %}
{% if line.street or line.zipcode or line.city %}
{% endfor %}
{% if event.settings.display_net_prices and cart.tax_total %}
{% trans "Net total" %}
{{ cart.net_total|money:event.currency }}
{% trans "Taxes" %}
{{ cart.tax_total|money:event.currency }}
{% endif %}
{% trans "Total" %}
{% blocktrans trimmed count num=cart.itemcount %}
One product
{% plural %}
{{ num }} products
{% endblocktrans %}
{{ cart.total|money:event.currency }}
{% if not event.settings.display_net_prices and cart.tax_total and not editable %}
{% blocktrans trimmed with tax_sum=cart.tax_total|money:event.currency %}
incl. {{ tax_sum }} taxes
{% endblocktrans %}
{% endif %}
{% if editable and vouchers_exist and not cart.all_with_voucher %}
{% trans "Redeem a voucher" %}
{% endif %}