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/accounts/orders.html | 59 ++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100755 servo/templates/accounts/orders.html (limited to 'servo/templates/accounts/orders.html') diff --git a/servo/templates/accounts/orders.html b/servo/templates/accounts/orders.html new file mode 100755 index 0000000..8420ad8 --- /dev/null +++ b/servo/templates/accounts/orders.html @@ -0,0 +1,59 @@ +{% extends "default.html" %} +{% load i18n %} +{% load servo_tags %} + +{% block toolbar %} +{% if perms.servo.add_order %} + {% trans "Create Order" %} +{% endif %} +{% endblock toolbar %} + +{% block content %} + + +
+
+ {% include "accounts/tabs.html" %} +
+
+ +{% block second_row %} + +
+
+
+ {% for field in form %} +
+ +
{{ field }}
+
+ {% endfor %} +


+
+ {% trans "Reset" %} + +
+
+
+
+{% block second_column %} + {% include "orders/list.html" %} +{% endblock second_column %} + +{% endblock second_row %} + +{% endblock content %} + +{% block crumbs %} +
  • {% trans "Orders" %}
  • +{% endblock crumbs %} -- cgit v1.2.3