summaryrefslogtreecommitdiffstats
path: root/templates/admin/login_order.html
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-10-15 00:17:53 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-27 16:31:23 +0100
commitfb1c34e7aeac67a75c29a132ded87edeb557cdaf (patch)
treef0e9d2fc9d4fe9a40dd83a1eb821f9764f9dbcf9 /templates/admin/login_order.html
parent8e9018c40be3c2810dc7272bfae0f07e5841c32d (diff)
downloadipsilon.git-fb1c34e7aeac67a75c29a132ded87edeb557cdaf.tar.gz
ipsilon.git-fb1c34e7aeac67a75c29a132ded87edeb557cdaf.tar.xz
ipsilon.git-fb1c34e7aeac67a75c29a132ded87edeb557cdaf.zip
Improve UI for enabling/disabling plugins config
Use the same templates for both info and login plugins Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'templates/admin/login_order.html')
-rw-r--r--templates/admin/login_order.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/admin/login_order.html b/templates/admin/login_order.html
deleted file mode 100644
index b14c4d9..0000000
--- a/templates/admin/login_order.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "master-admin.html" %}
-{% block main %}
- <h2>{{ title }}</h2>
- {% if message %}
- <div class="alert alert-{{message_type}}">
- <p>{{ message }}</p>
- </div>
- {% endif %}
- <div id="options">
- <form role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
-
- <div class="form-group">
- <label for="order">Login plugins order:</label>
- <input type="text" class="form-control" name="order" value="{{ ', '.join(options) }}" />
- </div>
- <span class="help-block">Plugins order</span>
-
- <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
- Save
- </button>
- <a href="{{ basepath }}/admin/login" class="btn btn-default" title="Back">Back</a>
- </form>
- </div>
-{% endblock %}
-