summaryrefslogtreecommitdiffstats
path: root/templates/admin
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2014-02-11 17:36:37 +0100
committerSimo Sorce <simo@redhat.com>2014-02-17 11:53:15 -0500
commitd64cd70ae413f5a936806a182e4377a887d4d782 (patch)
tree4dc8161092c470ec30a4a8d5d053e5bb62c3f5c1 /templates/admin
parent6e7edfd368105341aa852620c2d2b1c7e842ad25 (diff)
downloadipsilon-d64cd70ae413f5a936806a182e4377a887d4d782.tar.gz
ipsilon-d64cd70ae413f5a936806a182e4377a887d4d782.tar.xz
ipsilon-d64cd70ae413f5a936806a182e4377a887d4d782.zip
Apply patternfly to administration pages
Signed-off-by: Petr Vobornik <pvoborni@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'templates/admin')
-rw-r--r--templates/admin/index.html58
-rw-r--r--templates/admin/login_plugin.html64
2 files changed, 44 insertions, 78 deletions
diff --git a/templates/admin/index.html b/templates/admin/index.html
index 5af8497..c22d249 100644
--- a/templates/admin/index.html
+++ b/templates/admin/index.html
@@ -1,41 +1,23 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="UTF-8"></meta>
- <title>{{ title }}</title>
- <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
- <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
-</head>
-<body>
- <div id="container">
- <div id="logo">
- <p><a href="{{ basepath }}">Ipsilon</a></p>
- </div>
- <div id="logout">
- <p><a href="{{ basepath }}/logout">Log Out</a></p>
- </div>
- <div id="options">
- {% if user.is_admin %}
- <p>Login plugins:</p>
- <ul>
- {% for p in available %}
- <li> {{ p }} -
- {% if p in enabled %}
- <a href="{{ basepath }}/admin/login/{{ p }}/disable">Disable</a> -
- <a href="{{ basepath }}/admin/login/{{ p }}">Configure</a>
- {% else %}
- <a href="{{ basepath }}/admin/login/{{ p }}/enable">Enable</a>
- {% endif %}
- </li>
- {% endfor %}
- </ul>
- <p>Plugins order: [list here and form button to change?]</p>
- {% endif %}
+{% extends "master-admin.html" %}
+{% block main %}
+{% if user.is_admin %}
+ <h2>Login plugins</h2>
+
+ {% for p in available %}
+ <div class="row">
+ <div class="col-md-3 col-sm-3 col-xs-6">{{ p }}</div>
+ <div class="col-md-3 col-sm-3 col-xs-6">
+ {% if p in enabled %}
+ <a class="btn btn-default" href="{{ basepath }}/admin/login/{{ p }}/disable">Disable</a>
+ <a class="btn btn-default" href="{{ basepath }}/admin/login/{{ p }}">Configure</a>
+ {% else %}
+ <a class="btn btn-default" href="{{ basepath }}/admin/login/{{ p }}/enable">Enable</a>
+ {% endif %}
</div>
- <div id="home">
- <p><a href="{{ basepath }}/">Home</a></p>
</div>
- </div>
-</body>
-</html>
+ {% endfor %}
+ <h3>Plugins order</h3>
+ <p>[list here and form button to change?]</p>
+{% endif %}
+{% endblock %} \ No newline at end of file
diff --git a/templates/admin/login_plugin.html b/templates/admin/login_plugin.html
index 43adac6..b45b3a4 100644
--- a/templates/admin/login_plugin.html
+++ b/templates/admin/login_plugin.html
@@ -1,42 +1,26 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="UTF-8"></meta>
- <title>{{ title }}</title>
- <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
- <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
-</head>
-<body>
- <div id="container">
- <div id="logo">
- <p><a href="{{ basepath }}">Ipsilon</a></p>
- </div>
- <div id="logout">
- <p><a href="{{ basepath }}/logout">Log Out</a></p>
- </div>
- <div id="message">
- <p>{{ message }}</p>
- </div>
- <div id="options">
- <form id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
- <ul>
- {% for o in options %}
- <li>{{ o }}:
- <p>{{ options[o][0] }}</p>
- <input type="text" name="{{ o }}" value="{{ options[o][2] }}">
- </li>
- {% endfor %}
- </ul>
- <input id="submit" name="submit" type="submit" value="Submit">
- </form>
- </div>
- <div id="home">
- <p>
- <a href="{{ basepath }}/admin">Admin</a> -
- <a href="{{ basepath }}/">Home</a>
- </p>
- </div>
+{% extends "master-admin.html" %}
+{% block main %}
+ <h2>{{ title }}</h2>
+ {% if message %}
+ <div class="alert alert-{{message_type}}">
+ <p>{{ message }}</p>
</div>
-</body>
-</html>
+ {% endif %}
+ <div id="options">
+ <form role="form" id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
+ {% for o in options %}
+ <div class="form-group">
+ <label for="{{ o }}">{{ o }}:</label>
+ <input type="text" class="form-control" name="{{ o }}" value="{{ options[o][2] }}">
+ </div>
+ <span class="help-block">{{ options[o][0] }}</span>
+ {% endfor %}
+
+ <button id="submit" class="btn btn-primary" name="submit" type="submit" value="Submit">
+ Save
+ </button>
+ <a href="{{ basepath }}/admin" class="btn btn-default" title="Back">Back</a>
+ </form>
+ </div>
+{% endblock %} \ No newline at end of file