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/image_list.html | 38 ++++++++++++++++--------- 1 file changed, 24 insertions(+), 14 deletions(-) (limited to 'dashboard/src/templates/account/image_list.html') diff --git a/dashboard/src/templates/account/image_list.html b/dashboard/src/templates/account/image_list.html index 72ea1f5..7566a9c 100644 --- a/dashboard/src/templates/account/image_list.html +++ b/dashboard/src/templates/account/image_list.html @@ -1,27 +1,37 @@ {% extends "base.html" %} {% block content %}

Images I Own

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

Image {{image.id}}

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

Public Images

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

Image {{image.id}}

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