From 0338db2eb3197ce0024d0192bd981120a58de573 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 26 Mar 2014 15:20:16 -0400 Subject: Basic Identity providers plugin configuration Signed-off-by: Simo Sorce --- templates/admin/providers.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 templates/admin/providers.html (limited to 'templates') diff --git a/templates/admin/providers.html b/templates/admin/providers.html new file mode 100644 index 0000000..18445b6 --- /dev/null +++ b/templates/admin/providers.html @@ -0,0 +1,20 @@ +{% extends "master-admin.html" %} +{% block main %} +{% if user.is_admin %} +

Provider plugins

+ + {% for p in available %} +
+
{{ p }}
+
+ {% if available[p] in enabled %} + Disable + Configure + {% else %} + Enable + {% endif %} +
+
+ {% endfor %} +{% endif %} +{% endblock %} -- cgit