summaryrefslogtreecommitdiff
path: root/templates/admin/webcam_index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/webcam_index.html')
-rw-r--r--templates/admin/webcam_index.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/admin/webcam_index.html b/templates/admin/webcam_index.html
new file mode 100644
index 0000000..85356d1
--- /dev/null
+++ b/templates/admin/webcam_index.html
@@ -0,0 +1,22 @@
+{% extends "layout.html" %}
+{% load staticfiles %}
+
+{% block content %}
+<div class="container">
+ <div class="row">
+ {% include "account/sub_nav.html" %}
+ <div class="span12">
+ {% include "admin/sub_nav.html" %}
+ </div>
+ </div>
+ <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>
+{% endblock %} \ No newline at end of file