{% load i18n %} {{ subject }}
{% include 'base/header.html' %}
{{ welcome }}
{% autoescape off %} {{ order|safe }} {% endautoescape %}
{{ products_copy }}
{% 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 %}
{{ instructions_copy }}
{% for instruction in instructions %}
{{ instruction.name }}
{{ instruction.content|safe }}
{% endfor %} {% endif %}
{{ help|safe }}
{% include 'base/footer.html' %}