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 --- dashboard/src/templates/account/resource_list.html | 31 +++++++--------------- 1 file changed, 9 insertions(+), 22 deletions(-) (limited to 'dashboard/src/templates/account/resource_list.html') diff --git a/dashboard/src/templates/account/resource_list.html b/dashboard/src/templates/account/resource_list.html index 7e4194b..cdacdd6 100644 --- a/dashboard/src/templates/account/resource_list.html +++ b/dashboard/src/templates/account/resource_list.html @@ -1,30 +1,17 @@ {% extends "base.html" %} {% block content %} - +
{% for resource in resources %}
-
    -
  • id: {{resource.id}}
  • -
  • name: {{resource.name}}
  • -
  • description: {{resource.description}}
  • -
-
- +
+

Resource {{resource.id}}

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