From cac685966eebdf61db777860eae946f9a039187f Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Tue, 29 Jan 2019 10:05:27 -0500 Subject: Allow Users to Delete objects and Cancel Bookings A user can now delete thier own resources, configs, and snapshots as well as cancelling bookings. Change-Id: Ic8e4751feeb0b8fa0d76816b8df2d16729ad2828 Signed-off-by: Parker Berberian --- .../src/templates/account/configuration_list.html | 77 ++++++++++++++++++---- 1 file changed, 65 insertions(+), 12 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 14d0472..b920ba6 100644 --- a/dashboard/src/templates/account/configuration_list.html +++ b/dashboard/src/templates/account/configuration_list.html @@ -1,18 +1,71 @@ {% extends "base.html" %} {% block content %} -
- {% for config in configurations %} -
-
-

Configuration {{config.id}}

-
    -
  • id: {{config.id}}
  • -
  • name: {{config.name}}
  • -
  • description: {{config.description}}
  • -
  • resource: {{config.bundle}}
  • -
+
+{% for config in configurations %} +
+
+

Configuration {{config.id}}

+
    +
  • id: {{config.id}}
  • +
  • name: {{config.name}}
  • +
  • description: {{config.description}}
  • +
  • resource: {{config.bundle}}
  • +
+
+
+ +
+
+{% endfor %} +
+ +