diff options
author | Sawyer Bergeron <sawyerbergeron@gmail.com> | 2018-12-04 15:30:42 -0500 |
---|---|---|
committer | Sawyer Bergeron <sawyerbergeron@gmail.com> | 2018-12-14 15:52:04 -0500 |
commit | e26a8259dbe879d722d5e619f9d6efe0b113d1cd (patch) | |
tree | cf3f8d733fefad88474a09cce296b040200ff428 /src/templates/account/image_list.html | |
parent | 527d16d05016c029c022f77134f069af68218e61 (diff) |
Abstract Out Inline CSS for Account Views
Change-Id: I2da02fa7865b618c583d15cca9ef256c62f19286
Signed-off-by: Sawyer Bergeron <sawyerbergeron@gmail.com>
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> |