summaryrefslogtreecommitdiffstats
path: root/templates/admin/info_order.html
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-09-02 17:41:07 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-09-24 20:29:49 +0200
commit14e8ecd7cf8ea8d342eac5c4c66b764b3a8e2dbb (patch)
tree02bbdc36d32cbe550a2c1bc737fcb37d41a298b1 /templates/admin/info_order.html
parentbf4a27ab704581b68ddc24c74d92fc724ea0f124 (diff)
downloadipsilon-14e8ecd7cf8ea8d342eac5c4c66b764b3a8e2dbb.tar.gz
ipsilon-14e8ecd7cf8ea8d342eac5c4c66b764b3a8e2dbb.tar.xz
ipsilon-14e8ecd7cf8ea8d342eac5c4c66b764b3a8e2dbb.zip
Add Info providers Admin pages
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'templates/admin/info_order.html')
-rw-r--r--templates/admin/info_order.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/admin/info_order.html b/templates/admin/info_order.html
new file mode 100644
index 0000000..5d929be
--- /dev/null
+++ b/templates/admin/info_order.html
@@ -0,0 +1,25 @@
+{% 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">Info 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/info" class="btn btn-default" title="Back">Back</a>
+ </form>
+ </div>
+{% endblock %}
+