diff options
author | CruiseDevice | 2018-11-01 20:54:35 +0530 |
---|---|---|
committer | CruiseDevice | 2018-11-01 21:04:59 +0530 |
commit | 0a149c1a11d85d15d8c10dcfa6d7b05f62d93651 (patch) | |
tree | 7b55d12223467c859fbd6195c3ad8be1acbefa5e /sbhs/templates/dashboard/all_images.html | |
parent | a7553c125964748830712b6aee58189475547ee0 (diff) | |
download | sbhs_server-0a149c1a11d85d15d8c10dcfa6d7b05f62d93651.tar.gz sbhs_server-0a149c1a11d85d15d8c10dcfa6d7b05f62d93651.tar.bz2 sbhs_server-0a149c1a11d85d15d8c10dcfa6d7b05f62d93651.zip |
Modify show all webcam video feature
Diffstat (limited to 'sbhs/templates/dashboard/all_images.html')
-rw-r--r-- | sbhs/templates/dashboard/all_images.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sbhs/templates/dashboard/all_images.html b/sbhs/templates/dashboard/all_images.html index 5a7b74e..8bc6e81 100644 --- a/sbhs/templates/dashboard/all_images.html +++ b/sbhs/templates/dashboard/all_images.html @@ -6,13 +6,14 @@ {% block main %} <div class = "container"> <div class = "row"> - {% for b in boards %} - <div class="span4" style="text-align: center; outline: 1px solid black"> - <img src="{% static b.image_link %}" alt="{{ b.mid }}" style="width:90%;"> - <br> - Board MID: {{ b.mid }} - </div> - {% endfor %} + <table> + {% for board in image_links %} + <tr> + <td>{{board.board.mid}}</td> + <td><img src="{% static board.image_link %}"/></td> + </tr> + {% endfor %} + </table> </div> </div> <script type="text/javascript"> |