From 7dfa97b20d82292f45b1b955d14d2247e2bc4747 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 11 Feb 2014 17:36:37 +0100 Subject: Apply patternfly to administration pages Signed-off-by: Petr Vobornik --- templates/admin/index.html | 58 ++++++++++++++++------------------------------ 1 file changed, 20 insertions(+), 38 deletions(-) (limited to 'templates/admin/index.html') 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 @@ - - - - - {{ title }} - - - - -
- -
-

Log Out

-
-
- {% if user.is_admin %} -

Login plugins:

-
    - {% for p in available %} -
  • {{ p }} - - {% if p in enabled %} - Disable - - Configure - {% else %} - Enable - {% endif %} -
  • - {% endfor %} -
-

Plugins order: [list here and form button to change?]

- {% endif %} +{% extends "master-admin.html" %} +{% block main %} +{% if user.is_admin %} +

Login plugins

+ + {% for p in available %} +
+
{{ p }}
+
+ {% if p in enabled %} + Disable + Configure + {% else %} + Enable + {% endif %}
-
-

Home

-
- - + {% endfor %} +

Plugins order

+

[list here and form button to change?]

+{% endif %} +{% endblock %} \ No newline at end of file -- cgit