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/checkin/newindex.html | 146 ++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 servo/templates/checkin/newindex.html (limited to 'servo/templates/checkin/newindex.html') diff --git a/servo/templates/checkin/newindex.html b/servo/templates/checkin/newindex.html new file mode 100644 index 0000000..41a6a05 --- /dev/null +++ b/servo/templates/checkin/newindex.html @@ -0,0 +1,146 @@ +{% extends "checkin/index.html" %} +{% load servo_tags %} +{% load bootstrap3 %} +{% load i18n %} + +{% block main %} + + + + +{% comment %} +
+ + +
+{% endcomment %} +
+
+ {% csrf_token %} +
+ {% include "checkin/device_form.html" %} +
+ +
+ {% include "checkin/customer_form.html" %} +
+ + {% if request.user.is_authenticated %} +
+
+
+ +
+ {% for t in tags %} +
+ +
+ {% endfor %} +
+
+
+
+ {% endif %} +
+
+ {% bootstrap_field issue_form.issue_description %} + {% bootstrap_field issue_form.notes %} + {% bootstrap_field device_form.condition %} +
+
+ {% bootstrap_field device_form.pop %} + + + + + + + + + + {% for q in questions %} + + + + + + {% endfor %} + +
{% trans "Yes" %}{% trans "No" %}
+ {{ q }} +

{{ q.description }}

+
+ {% bootstrap_field customer_form.checkin_location %} + {% bootstrap_field customer_form.checkout_location %} +
+
+
+
+
+ {% buttons %} + {% if not request.user.is_authenticated %} + {% bootstrap_field customer_form.agree_to_terms %} + {% endif %} + {% if request.user.is_authenticated %} + + {% else %} + + {% endif %} + {% endbuttons %} +
+
+
+
+{% endblock main %} -- cgit v1.2.3