Multiple cameras partially working

Change-Id: I27279ef2e3c302946fb25c2a0c5eb32e9279d6b2
diff --git a/person_detection/templates/index.html b/person_detection/templates/index.html
index 26ab1e8..43a4c6b 100644
--- a/person_detection/templates/index.html
+++ b/person_detection/templates/index.html
@@ -4,6 +4,8 @@
   </head>
   <body>
     <h1>Person Detection - Aether Edge Application</h1>
-    <img src="{{ url_for('video_feed') }}">
+    {% for x in devices %}
+      <img src="{{ url_for('video_feed', device=x) }}">
+    {% endfor %}
   </body>
 </html>