blob: 2a1f84fe5ba0c600d798795fa8824e99b81b179b [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>
gstepanov8417c6e2015-02-06 15:05:27 +020010 <div>
11 {% include 'lab_header.html' %}
12 </div>
gstepanov2164d822015-02-04 19:49:40 +020013 {% block body %}
gstepanov200d3b42015-02-06 14:01:49 +020014 <h1 align="center">Lab name goes here:-)</h1>
gstepanov0a8fdd32015-02-05 15:54:11 +020015 <table class="table" width="600">
gstepanovcd77d5a2015-02-06 14:49:34 +020016 {% for row in table %}
17 <tr>
18 {% for data in row %}
19 <td>
20 {{ data }}
21 </td>
22 {% endfor %}
23 </tr>
gstepanov200d3b42015-02-06 14:01:49 +020024 {% endfor %}
gstepanov2164d822015-02-04 19:49:40 +020025 </table>
26 </div>
gstepanovcd77d5a2015-02-06 14:49:34 +020027 <h2 align="center">
28 <a href="{{ back_url }}">Back</a>
29 </h2>
gstepanov2164d822015-02-04 19:49:40 +020030 {% endblock %}
31</body>
32</html>