aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/checkin/status.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/checkin/status.html
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/templates/checkin/status.html')
-rw-r--r--servo/templates/checkin/status.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/servo/templates/checkin/status.html b/servo/templates/checkin/status.html
new file mode 100644
index 0000000..ddb49fb
--- /dev/null
+++ b/servo/templates/checkin/status.html
@@ -0,0 +1,21 @@
+{% extends "checkin/index.html" %}
+{% load bootstrap3 %}
+{% load i18n %}
+
+{% block main %}
+ <div class="page-header">
+ <h2>{% trans "Please enter your Service Order number" %}</h2>
+ </div>
+ <p>{% trans "The Service Order number is an 8-digit code printed on your work confirmation" %}</p>
+ <form method="get" action="" class="nolabel">
+ {% bootstrap_form form %}
+ {% buttons %}
+ <div class="pull-right">
+ <a class="btn btn-default" href="{% url 'checkin-index' %}">{% trans "Back" %}</a>
+ <button type="submit" class="btn btn-primary">
+ {% bootstrap_icon "search" %} Submit
+ </button>
+ </div>
+ {% endbuttons %}
+ </form>
+{% endblock main %}