From fef3a855657a7e5c2393dc469690d73bb249bd8f 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/resource_list.html | 121 ++++++++++++++++++++++++++++--- 1 file changed, 110 insertions(+), 11 deletions(-) (limited to 'src/templates/account/resource_list.html') diff --git a/src/templates/account/resource_list.html b/src/templates/account/resource_list.html index cdacdd6..1391e8e 100644 --- a/src/templates/account/resource_list.html +++ b/src/templates/account/resource_list.html @@ -1,17 +1,116 @@ {% extends "base.html" %} {% block content %} -
- {% for resource in resources %} -
-
-

Resource {{resource.id}}

-
    -
  • id: {{resource.id}}
  • -
  • name: {{resource.name}}
  • -
  • description: {{resource.description}}
  • -
+
+{% for resource in resources %} +
+
+

Resource {{resource.id}}

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