{% extends 'admin/print.html' %} {% load i18n simpelcore_tags %} {% block content %}
#{{ object.inner_id }}
{% trans "Created At:" %} {{ object.created_at }}
{{ object.get_status_display }}

{{ object.grand_total|currency }}

#{{ object.inner_id }}
{% with object.sales_order.customer as customer %}
{% if object.note %} {% endif %}
{% trans "Created At:" %} {{ object.created_at }}
{% trans "Customer ID" %} {{ customer.uid|upper }}
{% trans "Customer Name" %} {{ customer.name }}
{% trans "Address" %}
{{ customer.address.render.0 }}
{{ customer.address.render.1 }}
{% trans "Email" %} {{ customer.email }}
{% trans "Phone" %} {{ customer.phone }}
{% trans "Note" %} {{ object.note }}
{% endwith %}
{% for item in object.sales_order.items.all %}
{% if item.name %}{{ item.name }}{% endif %}

{{ item.product }}

{% block deliverable_information %}
{% trans "Deliverable Information" %} {% if item.deliverable_information %}
{{ item.deliverable_information.name }}
{% trans "Email" %}: {{ item.deliverable_information.email }} {% trans "Phone" %}: {{ item.deliverable_information.phone }}
{{ item.deliverable_information.address }}
{% else %} {% trans "Certificate holder not set. Customer information will be used." %} {% endif %}
{% endblock deliverable_information %} {% include 'admin/table_bundles.html' with item=item pricing=False %}
{% endfor %}
{% endblock %}