From a5be918364744f92d73aa4b6589f3b9b33235d6d Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 24 Mar 2014 16:59:41 -0400 Subject: Move login plugin configuration to its own module move also the template, in preparation for handling other configuration data in the main page. Signed-off-by: Simo Sorce --- templates/admin/plugin_config.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/admin/plugin_config.html (limited to 'templates/admin/plugin_config.html') diff --git a/templates/admin/plugin_config.html b/templates/admin/plugin_config.html new file mode 100644 index 0000000..7c143af --- /dev/null +++ b/templates/admin/plugin_config.html @@ -0,0 +1,26 @@ +{% extends "master-admin.html" %} +{% block main %} +

{{ title }}

+ {% if message %} +
+

{{ message }}

+
+ {% endif %} +
+
+ + {% for o in options %} +
+ + +
+ {{ options[o][0] }} + {% endfor %} + + + Back +
+
+{% endblock %} -- cgit