aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/devices/diagnostic_init.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/devices/diagnostic_init.html
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/templates/devices/diagnostic_init.html')
-rw-r--r--servo/templates/devices/diagnostic_init.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/servo/templates/devices/diagnostic_init.html b/servo/templates/devices/diagnostic_init.html
new file mode 100644
index 0000000..6363ca9
--- /dev/null
+++ b/servo/templates/devices/diagnostic_init.html
@@ -0,0 +1,16 @@
+{% extends "modal.html" %}
+{% load i18n %}
+
+{% block header %}{% trans "Initiate iOS diagnostics" %}{% endblock header %}
+
+{% block body %}
+ <form action="{{ url }}?a=init" method="post" class="form-horizontal">{% csrf_token %}
+ <input type="hidden" name="order" value="{{ order.pk|safe }}"/>
+ <div class="control-group">
+ <label class="control-label" for="id_email">{% trans "Email" %}</label>
+ <div class="controls">
+ <input id="id_email" maxlength="128" name="email" type="email" value="{{ customer.email }}"/>
+ </div>
+ </div>
+ </form>
+{% endblock body %}