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/index.html | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'templates/admin/index.html') diff --git a/templates/admin/index.html b/templates/admin/index.html index 1957a7f..a0d17fe 100644 --- a/templates/admin/index.html +++ b/templates/admin/index.html @@ -1,26 +1,6 @@ {% extends "master-admin.html" %} {% block main %} {% if user.is_admin %} -

Login plugins

- - {% for p in available %} -
-
{{ p }}
-
- {% if p in enabled %} - Disable - Configure - {% else %} - Enable - {% endif %} -
-
- {% endfor %} - -

Plugins order

-
{{ ', '.join(enabled) }}
-
- configure -
+

Select an item to configure

{% endif %} {% endblock %} -- cgit