summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-10-15 20:26:24 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-27 16:31:41 +0100
commitf3575089742ba85ed420f6f9becd2cde4135097f (patch)
treec21c31c127c8e2eaf853c80a9abe56e3ac9e1296 /templates
parent3a81575a4625576895958c9a21c8b6c64307fcb9 (diff)
downloadipsilon.git-f3575089742ba85ed420f6f9becd2cde4135097f.tar.gz
ipsilon.git-f3575089742ba85ed420f6f9becd2cde4135097f.tar.xz
ipsilon.git-f3575089742ba85ed420f6f9becd2cde4135097f.zip
Update style of plugins config page too
Also fix a bug that would cause the config page to show no fields when saving. Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/admin/plugin_config.html40
1 files changed, 29 insertions, 11 deletions
diff --git a/templates/admin/plugin_config.html b/templates/admin/plugin_config.html
index e722aa1..1372f55 100644
--- a/templates/admin/plugin_config.html
+++ b/templates/admin/plugin_config.html
@@ -1,31 +1,49 @@
{% extends "master-admin.html" %}
{% block main %}
- <h2>{{ title }}</h2>
- {% if message %}
- <div class="alert alert-{{message_type}}">
- <p>{{ message }}</p>
+{% if user.is_admin %}
+
+ <div class = "row">
+ <div class="col-md-3 col-sm-3 col-xs-6">
+ <h2>{{ title }}</h2>
+ </div>
+ <div class="col-md-3 col-sm-3 col-xs-6" role="alert">
+ {% if message %}
+ <div class="alert alert-{{message_type}}">
+ <p>{{ message }}</p>
+ </div>
+ {% endif %}
+ </div>
</div>
- {% endif %}
+
+ <hr>
+
<div id="options">
- <form role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
+ <form class="form-horizontal" role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
{% for o in options_order %}
<div class="form-group">
- <label for="{{ o }}">{{ o }}:</label>
+ <label class="col-sm-2" for="{{ o }}">{{ o }}:</label>
+ <div class="col-sm-10">
{% set val = plugin.get_config_value(o) %}
{% if val is string %}
<input type="text" class="form-control" name="{{ o }}" value="{{ val }}">
{% else %}
<input type="text" class="form-control" name="{{ o }}" value="{{ val|join(', ') }}">
{% endif %}
+ <span class="help-block">{{ plugin.get_config_desc(o) }}</span>
+ </div>
</div>
- <span class="help-block">{{ plugin.get_config_desc(o) }}</span>
+ <hr>
{% endfor %}
- <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
+ <p>
+ <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
Save
- </button>
- <a href="{{ back }}" class="btn btn-default" title="Back">Back</a>
+ </button>
+ <a href="{{ back }}" class="btn btn-default" title="Back">Back</a>
+ </p>
</form>
</div>
+
+{% endif %}
{% endblock %}