blob: 6313b62528a4d6385829f1c7b41771e463fa1b4f [file] [log] [blame]
gstepanovcd77d5a2015-02-06 14:49:34 +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 %}
gstepanovbb854922015-02-09 18:18:17 +020011 <h1 align="center">Perf-1 Env</h1>
gstepanovcd77d5a2015-02-06 14:49:34 +020012 <div class="table-responsive">
13 <table class="table" width="600">
14 <div id="images">
15 {% for url in urls %}
16 <img src="{{ url }}">
17 {% endfor %}
18 </div>
19 {% 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 <h2 align="center">
36 <a href="{{ table_url }}">Details</a>
37 </h2>
38 {% endblock %}
39</body>
40</html>