blob: f938c43a0527b65080bb8fe5fa79810dd72ecf0a [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 %}
gstepanov94531b82015-02-11 14:20:34 +020016 <div>
17 <img src="{{ url }}">
18 </div>
gstepanovcd77d5a2015-02-06 14:49:34 +020019 {% endfor %}
20 </div>
21 {% for header in headers %}
22 <th>
23 <h2>{{ header }}</h2>
24 </th>
25 {% endfor %}
26 {% for row in table %}
27 <tr>
28 {% for data in row %}
29 <td>
30 {{ data }}
31 </td>
32 {% endfor %}
33 </tr>
34 {% endfor %}
35 </table>
36 </div>
37 <h2 align="center">
38 <a href="{{ table_url }}">Details</a>
39 </h2>
40 {% endblock %}
41</body>
42</html>