separate tables and images
diff --git a/web_app/templates/table.html b/web_app/templates/table.html
index dedb38b..75cef20 100644
--- a/web_app/templates/table.html
+++ b/web_app/templates/table.html
@@ -9,29 +9,21 @@
 <body>
     {% block body %}
     <h1 align="center">Lab name goes here:-)</h1>
-    <div class="table-responsive">
         <table class="table" width="600">
-        <div id="images">
-            {% for url in urls %}
-            <img src="{{ url }}">    
+            {% for row in table %}
+            <tr>
+                {% for data in row %}
+                <td>
+                   {{ data }}
+                </td>
+                {%  endfor %}
+            </tr>
             {% endfor %}
-        </div>
-        {% for header in headers %}
-        <th>
-            <h2>{{ header }}</h2>
-        </th>
-        {% endfor %}
-        {% for row in table %}
-        <tr>
-            {% for data in row %}
-            <td>
-               {{ data }}
-            </td>
-            {%  endfor %}
-        </tr>
-        {% endfor %}
         </table>
     </div>
+    <h2 align="center">
+        <a href="{{ back_url }}">Back</a>
+    </h2>
     {% endblock %}
 </body>
 </html>
\ No newline at end of file
diff --git a/web_app/templates/test.html b/web_app/templates/test.html
new file mode 100644
index 0000000..eb4df3d
--- /dev/null
+++ b/web_app/templates/test.html
@@ -0,0 +1,40 @@
+{% extends "base.html" %}
+<html>
+<head>
+    {% block head %}
+    {{ super() }}
+    <title>Table of results</title>
+    {% endblock %}
+</head>
+<body>
+    {% block body %}
+    <h1 align="center">Lab name goes here:-)</h1>
+    <div class="table-responsive">
+        <table class="table" width="600">
+        <div id="images">
+            {% for url in urls %}
+            <img src="{{ url }}">    
+            {% endfor %}
+        </div>
+        {% for header in headers %}
+        <th>
+            <h2>{{ header }}</h2>
+        </th>
+        {% endfor %}
+        {% for row in table %}
+        <tr>
+            {% for data in row %}
+            <td>
+               {{ data }}
+            </td>
+            {%  endfor %}
+        </tr>
+        {% endfor %}
+        </table>
+    </div>
+    <h2 align="center">
+        <a href="{{ table_url }}">Details</a>
+    </h2>
+    {% endblock %}
+</body>
+</html>
\ No newline at end of file