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/image_list.html | 109 ++++++++++++++++++++++++++++++---- 1 file changed, 96 insertions(+), 13 deletions(-) (limited to 'src/templates/account/image_list.html') diff --git a/src/templates/account/image_list.html b/src/templates/account/image_list.html index 7566a9c..cd83dcf 100644 --- a/src/templates/account/image_list.html +++ b/src/templates/account/image_list.html @@ -2,20 +2,29 @@ {% block content %}

Images I Own

- {% for image in images %} -
-
-

Image {{image.id}}

-
    -
  • id: {{image.id}}
  • -
  • lab: {{image.from_lab.name}}
  • -
  • name: {{image.name}}
  • -
  • description: {{image.description}}
  • -
  • host profile: {{image.host_type.name}}
  • -
-
+{% for image in images %} +
+
+

Image {{image.id}}

+
    +
  • id: {{image.id}}
  • +
  • lab: {{image.from_lab.name}}
  • +
  • name: {{image.name}}
  • +
  • description: {{image.description}}
  • +
  • host profile: {{image.host_type.name}}
  • +
- {% endfor %} +
+ +
+
+{% endfor %}

Public Images

@@ -34,4 +43,78 @@
{% endfor %}
+ + +