{% extends "orders/edit.html" %} {% load static %} {% load servo_tags %} {% load i18n %} {% block content %}
{% csrf_token %} {{ form.close }} {{ formset.management_form }}
{% trans "Customer" %}
{% include "form_field_snippet.html" with field=form.customer_name %}
{% include "form_field_snippet.html" with field=form.customer_email %}
{% include "form_field_snippet.html" with field=form.customer_phone %}
{% include "form_field_snippet.html" with field=form.customer_address %}
{% include "form_field_snippet.html" with field=form.reference %}
{% trans "Payment" %} {% for f in formset %}
{{ f.created_by }} {{ f.method }}
{{ f.amount }}
{% endfor %}
{% trans "Products" %} {% for p in products %} {% endfor %}
{% trans "Product" %} {% trans "Qty" %} {% trans "Price" %} {% trans "Price w/ tax" %} {% trans "Total" %}
{{ p.product.code }}
{{ p.product.title }}
{{ p.amount }} {{ p.price_notax|currency }} {{ p.price|currency }} {{ p.total_gross|currency }}
{% trans "Total" %}: {{ totals.amount }} {{ form.total_net }} {{ form.total_tax }} {{ form.total_gross }}
{% trans "Cancel" %}
{% endblock content %} {% block crumbs %}
  • {{ order.get_queue_title }} /
  • {% trans "Order" %} {{ order.get_footer }} /
  • {% trans "Dispatch" %}
  • {% endblock crumbs %} {% block media %} {% endblock media %}