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/admin/queues/form.html | 81 ++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 servo/templates/admin/queues/form.html (limited to 'servo/templates/admin/queues/form.html') diff --git a/servo/templates/admin/queues/form.html b/servo/templates/admin/queues/form.html new file mode 100644 index 0000000..119275a --- /dev/null +++ b/servo/templates/admin/queues/form.html @@ -0,0 +1,81 @@ +{% extends "admin/queues/index.html" %} +{% load i18n %} + +{% block third_column %} +
+ {% csrf_token %} + {{ formset.management_form }} + +
+
+ {% include "form_field_snippet.html" with field=form.title %} + {% include "form_field_snippet.html" with field=form.priority %} + {% include "form_field_snippet.html" with field=form.description %} + + {% include "form_field_snippet.html" with field=form.locations %} +
+
+ + + + + + + + + + {% for form in formset %} + + {% for field in form %} + {% if field.is_hidden %} + {{ field }} + {% else %} + + {% endif %} + {% endfor %} + + {% endfor %} + +
{% trans "Status" %}{% trans "Time limits" %}{% trans "Delete" %}
{{ field }}
+ {% trans "Add Status" %} +
+
+ {% include "form_field_snippet.html" with field=form.status_created %} + {% include "form_field_snippet.html" with field=form.status_assigned %} + {% include "form_field_snippet.html" with field=form.status_products_ordered %} + {% include "form_field_snippet.html" with field=form.status_products_received %} + {% include "form_field_snippet.html" with field=form.status_repair_completed %} + {% include "form_field_snippet.html" with field=form.status_dispatched %} + {% include "form_field_snippet.html" with field=form.status_closed %} +
+
+ {% include "form_field_snippet.html" with field=form.gsx_soldto %} +
+
+ {% include "form_field_snippet.html" with field=form.order_template %} + {% include "form_field_snippet.html" with field=form.quote_template %} + {% include "form_field_snippet.html" with field=form.receipt_template %} + {% include "form_field_snippet.html" with field=form.dispatch_template %} +
+
+ {% include "form_field_snippet.html" with field=form.users %} +
+
+ {% include "form_buttons.html" %} +
+{% endblock third_column %} + +{% block media %} + +{% endblock media %} -- cgit v1.2.3