From 252439a59e435fcb44c4692c6522083e03282038 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 'dashboard/src/templates/account/configuration_list.html') diff --git a/dashboard/src/templates/account/configuration_list.html b/dashboard/src/templates/account/configuration_list.html index 9dcec07..14d0472 100644 --- a/dashboard/src/templates/account/configuration_list.html +++ b/dashboard/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