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/settings.html | 46 ++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 servo/templates/accounts/settings.html (limited to 'servo/templates/accounts/settings.html') diff --git a/servo/templates/accounts/settings.html b/servo/templates/accounts/settings.html new file mode 100755 index 0000000..a48ab19 --- /dev/null +++ b/servo/templates/accounts/settings.html @@ -0,0 +1,46 @@ +{% extends "accounts/orders.html" %} +{% load i18n %} + +{% block first_column %} +{% endblock first_column %} + +{% block second_row %} +
{% csrf_token %} + +
+
+ {% include "form_field_snippet.html" with field=form.location %} + {% include "form_field_snippet.html" with field=form.queues %} + {% include "form_field_snippet.html" with field=form.should_notify %} + {% include "form_field_snippet.html" with field=form.notify_by_email %} + {% include "form_field_snippet.html" with field=form.autoprint %} + {% include "form_field_snippet.html" with field=form.photo %} +
+
+ {% include "form_field_snippet.html" with field=form.locale %} + {% include "form_field_snippet.html" with field=form.region %} + {% include "form_field_snippet.html" with field=form.timezone %} +
+
+ {% include "form_field_snippet.html" with field=form.password1 %} + {% include "form_field_snippet.html" with field=form.password2 %} +
+
+ {% include "form_field_snippet.html" with field=form.tech_id %} + {% include "form_field_snippet.html" with field=form.gsx_userid %} + {% include "form_field_snippet.html" with field=form.gsx_password %} + {% include "form_field_snippet.html" with field=form.gsx_poprefix %} +
+
+ {% include "form_buttons.html" %} +
+{% endblock second_row %} + +{% block crumbs %} +
  • {% trans "Settings" %}
  • +{% endblock crumbs %} -- cgit v1.2.3