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/admin/settings.html | 136 ++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 servo/templates/admin/settings.html (limited to 'servo/templates/admin/settings.html') diff --git a/servo/templates/admin/settings.html b/servo/templates/admin/settings.html new file mode 100644 index 0000000..15266b7 --- /dev/null +++ b/servo/templates/admin/settings.html @@ -0,0 +1,136 @@ +{% extends "admin/index.html" %} +{% load i18n %} + +{% block second_column %} +
+ {% csrf_token %} + + +
+
+ {% include "form_field_snippet.html" with field=form.company_name %} + {% include "form_field_snippet.html" with field=form.company_logo %} + {% include "form_field_snippet.html" with field=form.gsx_account %} + {% include "form_field_snippet.html" with field=form.terms_of_service %} + {% include "form_field_snippet.html" with field=form.autocomplete_repairs %} +
+
+ {% include "form_field_snippet.html" with field=form.currency %} + {% include "form_field_snippet.html" with field=form.pct_margin %} + {% include "form_field_snippet.html" with field=form.pct_vat %} + {% include "form_field_snippet.html" with field=form.shipping_cost %} + {% include "form_field_snippet.html" with field=form.track_inventory %} +
+
+ + {% trans "Applies the new settings to existing products after saving" %} +
+
+
+
+
+ {% include "form_field_snippet.html" with field=form.default_sender %} + {% include "form_field_snippet.html" with field=form.default_sender_custom %} + {% include "form_field_snippet.html" with field=form.default_subject %} + {% include "form_field_snippet.html" with field=form.smtp_host %} + {% include "form_field_snippet.html" with field=form.smtp_user %} + {% include "form_field_snippet.html" with field=form.smtp_password %} + {% include "form_field_snippet.html" with field=form.smtp_ssl %} +
+
+ {% trans "Notifications" %} + {% include "form_field_snippet.html" with field=form.notify_address %} + {% include "form_field_snippet.html" with field=form.notify_location %} +
+
+
+ {% include "form_field_snippet.html" with field=form.imap_act %} + {% include "form_field_snippet.html" with field=form.imap_host %} + {% include "form_field_snippet.html" with field=form.imap_user %} + {% include "form_field_snippet.html" with field=form.imap_password %} + {% include "form_field_snippet.html" with field=form.imap_ssl %} +
+
+ {% include "form_field_snippet.html" with field=form.sms_gateway %} + {% if config.sms_gateway == 'builtin' %} +

{% trans "Sending SMS messages will be handled by Servo" %}

+ {% endif %} + {% if config.sms_gateway == 'http' %} + {% include "form_field_snippet.html" with field=form.sms_http_url %} + {% include "form_field_snippet.html" with field=form.sms_http_user %} + {% include "form_field_snippet.html" with field=form.sms_http_password %} + {% endif %} + {% if config.sms_gateway == 'smtp' %} + {% include "form_field_snippet.html" with field=form.sms_smtp_address %} + {% endif %} + {% if config.sms_gateway == 'jazz' %} + {% include "form_field_snippet.html" with field=form.sms_http_user %} + {% include "form_field_snippet.html" with field=form.sms_http_password %} + {% include "form_field_snippet.html" with field=form.sms_http_sender %} + {% endif %} + {% if config.sms_gateway == 'hqsms' %} + {% include "form_field_snippet.html" with field=form.sms_http_user %} + {% include "form_field_snippet.html" with field=form.sms_http_password %} + {% include "form_field_snippet.html" with field=form.sms_http_sender %} + {% endif %} +
+
+ {% include "form_field_snippet.html" with field=form.checkin_user %} + {% include "form_field_snippet.html" with field=form.checkin_group %} + {% include "form_field_snippet.html" with field=form.checkin_queue %} + {% include "form_field_snippet.html" with field=form.checkin_checklist %} + {% include "form_field_snippet.html" with field=form.checkin_password %} + {% include "form_field_snippet.html" with field=form.checkin_require_password %} + {% include "form_field_snippet.html" with field=form.checkin_require_condition %} + {% include "form_field_snippet.html" with field=form.checkin_report_checklist %} + {% include "form_field_snippet.html" with field=form.checkin_timeline %} + +
+
+
+ +
+
+{% endblock second_column %} + +{% block media %} + +{% endblock media %} -- cgit v1.2.3