{% extends "two_column_layout.html" %} {% load servo_tags %} {% load i18n %} {% block first_column %} {% with note.order as order %} {% if order %} {% if order.customer %} {% include "orders/customer.html" with nodes=order.customer_list %}
{% endif %} {% for device in order.devices.all %}

{{ device.description }}
{{ device.configuration }}
{{ device.sn }}

{% endfor %}
{% for p in order.products %} {{ p.code }}{{ p.price|currency }}
{{ p.title }}
{% endfor %}
{% trans "Total" %}: {{ order.gross_total|currency }} {% endif %} {% endwith %} {% endblock first_column %} {% block second_column %}
{% csrf_token %} {{ form.customer }} {{ formset.management_form }} {{ form.order }} {% if note.parent %} {{ form.parent }} {% endif %}
{% include "form_field_snippet.html" with field=form.recipient %} {% include "form_field_snippet.html" with field=form.subject %} {% include "form_field_snippet.html" with field=form.sender %} {% include "form_field_snippet.html" with field=form.body %} {% include "form_field_snippet.html" with field=form.is_reported %} {{ form.type }}
{% for f in formset %} {% include "form_snippet.html" with form=f %} {% endfor %}
{% include "form_field_snippet.html" with field=form.labels %}
{% include "form_field_snippet.html" with field=escalation_form.issue_type %} {% include "form_field_snippet.html" with field=escalation_form.status %} {% include "form_field_snippet.html" with field=escalation_form.gsx_account %} {% for k, v in contexts.items %}
{% endfor %}
{% if note.pk %} {% trans "Delete" %} {% endif %}
{% endblock second_column %} {% block crumbs %} {% if note.order %}
  • {{ order.get_queue_title }} /
  • {% trans "Order" %} {{ order.code }} /
  • {% trans "Edit Note" %}
  • {% endif %} {% endblock crumbs %}