blob: 75cef20a40191ce4007af62f579af3fd61e89ea2 [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>
gstepanov0a8fdd32015-02-05 15:54:11 +020012 <table class="table" width="600">
gstepanovcd77d5a2015-02-06 14:49:34 +020013 {% for row in table %}
14 <tr>
15 {% for data in row %}
16 <td>
17 {{ data }}
18 </td>
19 {% endfor %}
20 </tr>
gstepanov200d3b42015-02-06 14:01:49 +020021 {% endfor %}
gstepanov2164d822015-02-04 19:49:40 +020022 </table>
23 </div>
gstepanovcd77d5a2015-02-06 14:49:34 +020024 <h2 align="center">
25 <a href="{{ back_url }}">Back</a>
26 </h2>
gstepanov2164d822015-02-04 19:49:40 +020027 {% endblock %}
28</body>
29</html>