{% include 'base/header.html' %}
{{ welcome }}
{% autoescape off %}
{{ order|safe }}
{% endautoescape %}
|
{% for product in products %}
|
{% if product.additional_key %}
{{product.name}}: {{ key_name }}: {{product.key}} | {{ additional_key_name }}: {{product.additional_key}}
{% else %}
{{product.name}}: {{product.key}}
{% endif %}
|
|
{% endfor %}
{% if instructions %}
{% for instruction in instructions %}
{{ instruction.name }}
{{ instruction.content|safe }}
|
{% endfor %}
{% endif %}
|
{% include 'base/footer.html' %}
|