From 4c8a6401abe2ee3752d8a30402e74e882042352f Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Wed, 27 Aug 2014 15:22:39 +0200 Subject: [webui] Restructure file tree + convert tabs to 2 whitespaces + remove setup.html --- module/webui/themes/default/tml/settings.html | 204 ++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100644 module/webui/themes/default/tml/settings.html (limited to 'module/webui/themes/default/tml/settings.html') diff --git a/module/webui/themes/default/tml/settings.html b/module/webui/themes/default/tml/settings.html new file mode 100644 index 000000000..6c80808b8 --- /dev/null +++ b/module/webui/themes/default/tml/settings.html @@ -0,0 +1,204 @@ +{% extends '/default/tml/base.html' %} + +{% block title %}{{ _("Config") }} - {{ super() }} {% endblock %} +{% block subtitle %}{{ _("Config") }}{% endblock %} + +{% block head %} + + + + +{% endblock %} + +{% block content %} + + + +
+ +
+ + + + + + +
+ +
+

   {{ _("Choose a section from the menu") }}

+
+
+ + +
+
+ + + + + + +
+ + +
+

   {{ _("Choose a section from the menu") }}

+
+
+ +
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + {% for account in conf.accs %} + {% set plugin = account.type %} + + + + + + + + + + + + + + {% endfor %} +
{{ _("Plugin") }}{{ _("Name") }}{{ _("Password") }}{{ _("Status") }}{{ _("Premium") }}{{ _("Valid until") }}{{ _("Traffic left") }}{{ _("Time") }}{{ _("Max Parallel") }}{{ _("Delete?") }}
+ {{ plugin }} + + + + {% if account.valid %} + + {{ _("valid") }} + {% else %} + + {{ _("not valid") }} + {% endif %} + + + {% if account.premium %} + + {{ _("yes") }} + {% else %} + + {{ _("no") }} + {% endif %} + + + + {{ account.validuntil }} + + + + {{ account.trafficleft }} + + + + + + + +
+ + + +
+
+
+{% endblock %} +{% block hidden %} +
+
+

{{_("Add Account")}}

+

{{_("Enter your account data to use premium features.")}}

+ + + + + + + + + + + +
+ +
+ +
+{% endblock %} -- cgit v1.2.3