aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/accounts/settings.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/accounts/settings.html
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/templates/accounts/settings.html')
-rwxr-xr-xservo/templates/accounts/settings.html46
1 files changed, 46 insertions, 0 deletions
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 %}
+<form action="" method="post" accept-charset="utf-8" class="form-horizontal" enctype="multipart/form-data">{% csrf_token %}
+ <ul class="nav nav-tabs">
+ <li class="active"><a href="#tab1" data-toggle="tab">{% trans "Profile" %}</a></li>
+ <li><a href="#tab2" data-toggle="tab">{% trans "Locale" %}</a></li>
+ <li><a href="#tab3" data-toggle="tab">{% trans "Password" %}</a></li>
+ <li><a href="#tab4" data-toggle="tab">{% trans "GSX" %}</a></li>
+ </ul>
+ <div class="tab-content">
+ <div class="tab-pane active" id="tab1">
+ {% 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 %}
+ </div>
+ <div class="tab-pane" id="tab2">
+ {% 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 %}
+ </div>
+ <div class="tab-pane" id="tab3">
+ {% include "form_field_snippet.html" with field=form.password1 %}
+ {% include "form_field_snippet.html" with field=form.password2 %}
+ </div>
+ <div class="tab-pane" id="tab4">
+ {% 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 %}
+ </div>
+ </div>
+ {% include "form_buttons.html" %}
+</form>
+{% endblock second_row %}
+
+{% block crumbs %}
+ <li class="active">{% trans "Settings" %}</li>
+{% endblock crumbs %}