From febdee2820e6527fb4f5f5843f951a01c24c8ba9 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Fri, 18 Jan 2019 14:43:11 -0500 Subject: Style Account pages Adds some prettiness to the account pages that list bookings, etc Change-Id: I90508cfafba00380d67965a038dc54d1fac43f60 Signed-off-by: Parker Berberian --- src/templates/account/configuration_list.html | 33 ++++++++------------------- 1 file changed, 10 insertions(+), 23 deletions(-) (limited to 'src/templates/account/configuration_list.html') diff --git a/src/templates/account/configuration_list.html b/src/templates/account/configuration_list.html index 9dcec07..14d0472 100644 --- a/src/templates/account/configuration_list.html +++ b/src/templates/account/configuration_list.html @@ -1,31 +1,18 @@ {% extends "base.html" %} {% block content %} - +
{% for config in configurations %}
-
    -
  • id: {{config.id}}
  • -
  • name: {{config.name}}
  • -
  • description: {{config.description}}
  • -
  • resource: {{config.bundle}}
  • -
-
- +
+

Configuration {{config.id}}

+
    +
  • id: {{config.id}}
  • +
  • name: {{config.name}}
  • +
  • description: {{config.description}}
  • +
  • resource: {{config.bundle}}
  • +
{% endfor %} +
{% endblock %} -- cgit 1.2.3-korg