blob: 76ef6de995a0f8fb39f00dfde994854b5dee4f17 [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 %}
gstepanov9ddc18f2015-02-11 20:28:59 +020014 <h1 align="center">Perf-1-Env</h1>
gstepanov3ce37b82015-02-12 16:20:56 +020015 <table class="table table-bordered" width="600">
gstepanov9eb8bf32015-02-11 20:13:14 +020016 {% for header in headers %}
17 <th>
18 {{ header }}
19 </th>
20 {% endfor %}
gstepanovcd77d5a2015-02-06 14:49:34 +020021 {% for row in table %}
22 <tr>
23 {% for data in row %}
24 <td>
25 {{ data }}
26 </td>
27 {% endfor %}
28 </tr>
gstepanov200d3b42015-02-06 14:01:49 +020029 {% endfor %}
gstepanov2164d822015-02-04 19:49:40 +020030 </table>
31 </div>
gstepanovcd77d5a2015-02-06 14:49:34 +020032 <h2 align="center">
33 <a href="{{ back_url }}">Back</a>
34 </h2>
gstepanov2164d822015-02-04 19:49:40 +020035 {% endblock %}
36</body>
37</html>