From 63b0fc6269b38edf7234b9f151b80d81f614c0a3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 4 Aug 2015 10:11:24 +0300 Subject: Initial commit First public commit --- servo/templates/orders/print_dispatch.html | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 servo/templates/orders/print_dispatch.html (limited to 'servo/templates/orders/print_dispatch.html') diff --git a/servo/templates/orders/print_dispatch.html b/servo/templates/orders/print_dispatch.html new file mode 100755 index 0000000..003e03e --- /dev/null +++ b/servo/templates/orders/print_dispatch.html @@ -0,0 +1,38 @@ +{% extends "orders/print_confirmation.html" %} +{% load i18n %} + +{% block title %} + {% blocktrans with code=order.code%}Dispatch #{{ code }}{% endblocktrans %} +{% endblock title %} + +{% block parts_and_services %} +

{% trans "Products and Services" %}

+ + + + + + + + + + + {% block list_products %} + {% for i in order.products %} + + + + + + + + {% endfor %} + {% endblock list_products %} + +
{% trans "Product" %}{% trans "Warranty" %}{% trans "VAT %" %}{% trans "Qty" %}
{{ i.product.code }}{{ i.title }}{% if i.sn %}
{% trans "SN" %}: {{ i.sn }}{% endif %}
{{ i.product.warranty_period }} {% trans "mon." %}{{ i.product.pct_vat|floatformat:"0" }}%{{ i.amount }}
+{% endblock parts_and_services %} + +{% block received_by %} +{% endblock received_by %} + +{% block tos %}{% endblock tos %} -- cgit v1.2.3