blob: 5a7b74e19d86d4651cc34aa03d9c32e8a81706e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'dashboard/dashboard_index.html' %}
{% load staticfiles %}
{% block title %}
All Images
{% endblock %}
{% 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 %}
</div>
</div>
<script type="text/javascript">
var timer = setInterval(function(){
location.reload();
}, 25000);
</script>
{% endblock %}
|