blob: dedb38b5d7a4f456db5dc6bbc767c4b2f022b0bf [file] [log] [blame]
gstepanov2164d822015-02-04 19:49:40 +02001{% extends "base.html" %}
2<html>
3<head>
4 {% block head %}
5 {{ super() }}
6 <title>Table of results</title>
7 {% endblock %}
8</head>
9<body>
10 {% block body %}
gstepanov200d3b42015-02-06 14:01:49 +020011 <h1 align="center">Lab name goes here:-)</h1>
gstepanov2164d822015-02-04 19:49:40 +020012 <div class="table-responsive">
gstepanov0a8fdd32015-02-05 15:54:11 +020013 <table class="table" width="600">
gstepanov200d3b42015-02-06 14:01:49 +020014 <div id="images">
15 {% for url in urls %}
16 <img src="{{ url }}">
17 {% endfor %}
18 </div>
gstepanov2164d822015-02-04 19:49:40 +020019 {% for header in headers %}
20 <th>
21 <h2>{{ header }}</h2>
22 </th>
23 {% endfor %}
24 {% for row in table %}
25 <tr>
26 {% for data in row %}
27 <td>
28 {{ data }}
29 </td>
30 {% endfor %}
31 </tr>
32 {% endfor %}
33 </table>
34 </div>
35 {% endblock %}
36</body>
37</html>