summaryrefslogtreecommitdiffstats
path: root/templates/admin/info_order.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/info_order.html')
-rw-r--r--templates/admin/info_order.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/admin/info_order.html b/templates/admin/info_order.html
deleted file mode 100644
index 5d929be..0000000
--- a/templates/admin/info_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">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 %}
-