diff options
author | Mahesh Gudi | 2018-11-05 17:07:20 +0530 |
---|---|---|
committer | GitHub | 2018-11-05 17:07:20 +0530 |
commit | 5be8a88d0eae56ee84827dd66647fc38476ab80f (patch) | |
tree | d2efa6d9b7521341ca097aea62e55bef137072a9 /sbhs/templates/dashboard/all_images.html | |
parent | d86b6a05b2079df5c967c0eb86936eef7aed7e8b (diff) | |
parent | f3727c726a2c385ce7e22a72064aa12bc4216af7 (diff) | |
download | sbhs_server-5be8a88d0eae56ee84827dd66647fc38476ab80f.tar.gz sbhs_server-5be8a88d0eae56ee84827dd66647fc38476ab80f.tar.bz2 sbhs_server-5be8a88d0eae56ee84827dd66647fc38476ab80f.zip |
Fix show all boards images view in moderator
Diffstat (limited to 'sbhs/templates/dashboard/all_images.html')
-rw-r--r-- | sbhs/templates/dashboard/all_images.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sbhs/templates/dashboard/all_images.html b/sbhs/templates/dashboard/all_images.html index 8bc6e81..9d148a7 100644 --- a/sbhs/templates/dashboard/all_images.html +++ b/sbhs/templates/dashboard/all_images.html @@ -6,14 +6,16 @@ {% block main %} <div class = "container"> <div class = "row"> - <table> - {% for board in image_links %} - <tr> - <td>{{board.board.mid}}</td> - <td><img src="{% static board.image_link %}"/></td> - </tr> - {% endfor %} - </table> + <div class = "gallery" id = "gallery"> + <div class = "mb-3 pics animation all 2"> + <div class = "thumbnail"> + {% for board in image_links %} + {{board.borad.mid}} + <img src="{% static board.image_link %}"> + {% endfor %} + </div> + </div> + </div> </div> </div> <script type="text/javascript"> |