{% extends "base.html" %} {% load i18n wagtailcore_tags humanize static %} {% block cart_drop %}{% endblock %} {% block main %}

{{ order }}

{% for row in order.row_list %} {% endfor %}
InnehÄll
Kurs Kod Antal Pris
{{ row.text }} {{ row.sku }} {{ row.quantity }} {{ row.price_total|intcomma }}
Summa {{ order.total_price|intcomma }}
Moms {{ order.vat|intcomma }}
Totalpris {{ order.total_price_incl|intcomma }}
Faktura-uppgifter
Ordernummer {{ order.invoice.invoice_no }}
{% trans "Company" %} {{ order.invoice.company_name }}
Organisationsnummer {{ order.invoice.id_number }}
Referens {{ order.invoice.invoice_reference }}
E-post {{ order.invoice.invoice_email }}
Adress {{ order.invoice.invoice_address|linebreaksbr }}
Uppdelad betalning {{ order.invoice.split_payment|yesno|capfirst }}
{% for row in order.row_list %} {% for participant in row.participants.all %} {% endfor %} {% endfor %}
Deltagare
{{ row|safe }}
Namn Red Hat ID E-post Telefon PO
{{ participant }} {{ participant.red_hat_id|default_if_none:"-" }} {{ participant.email }} {{ participant.phone }}
{% endblock %}