aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/account/image_list.html
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-01-02 15:22:55 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-01-02 15:22:55 +0000
commit71b35c878c2b5d6f54b9164e32f299196a378bd1 (patch)
tree35f97956b1a34a63e1a699ab53652b1abc47d3c2 /src/templates/account/image_list.html
parente4dd3bb46d8ca6b54820f8f087268042cd91e359 (diff)
parente26a8259dbe879d722d5e619f9d6efe0b113d1cd (diff)
Merge "Abstract Out Inline CSS for Account Views"
Diffstat (limited to 'src/templates/account/image_list.html')
-rw-r--r--src/templates/account/image_list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/account/image_list.html b/src/templates/account/image_list.html
index fb436df..72ea1f5 100644
--- a/src/templates/account/image_list.html
+++ b/src/templates/account/image_list.html
@@ -2,7 +2,7 @@
{% block content %}
<h2>Images I Own</h2>
{% for image in images %}
- <div style="border:2px;border-style:solid;border-color:grey;margin:5px">
+ <div class="detail_card">
<ul>
<li>id: {{image.id}}</li>
<li>lab: {{image.from_lab.name}}</li>
@@ -14,7 +14,7 @@
{% endfor %}
<h2>Public Images</h2>
{% for image in public_images %}
- <div style="border:2px;border-style:solid;border-color:grey;margin:5px">
+ <div class="detail_card">
<ul>
<li>id: {{image.id}}</li>
<li>lab: {{image.from_lab.name}}</li>