diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-02 15:22:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-02 15:22:55 +0000 |
commit | 71b35c878c2b5d6f54b9164e32f299196a378bd1 (patch) | |
tree | 35f97956b1a34a63e1a699ab53652b1abc47d3c2 /src/templates/account/image_list.html | |
parent | e4dd3bb46d8ca6b54820f8f087268042cd91e359 (diff) | |
parent | e26a8259dbe879d722d5e619f9d6efe0b113d1cd (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.html | 4 |
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> |