blob: 1870049253d03f36954704838c846519ed8c0a62 [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>
gstepanovbdc406b2015-02-11 17:35:55 +020012 {% include 'lab_main.html'%}
13 <br>
gstepanovcd77d5a2015-02-06 14:49:34 +020014 <div class="table-responsive">
gstepanovcd77d5a2015-02-06 14:49:34 +020015 <div id="images">
gstepanov3ce37b82015-02-12 16:20:56 +020016 <table align="center" class="table table-bordered">
gstepanovbdc406b2015-02-11 17:35:55 +020017 {% for url in urls %}
gstepanovdff5ad92015-02-12 17:13:09 +020018 {% if loop.index is divisibleby 2 %}
19 <td>
gstepanovbdc406b2015-02-11 17:35:55 +020020 <img src="{{ url }}">
21 </td>
22 </tr>
gstepanovdff5ad92015-02-12 17:13:09 +020023 {% else %}
24 <tr>
25 <td>
26 <img src="{{ url }}">
27 </td>
gstepanovbdc406b2015-02-11 17:35:55 +020028 {% endif %}
29 {% endfor %}
30 </table>
gstepanovcd77d5a2015-02-06 14:49:34 +020031 </div>
gstepanovbdc406b2015-02-11 17:35:55 +020032 <table class="table" width="600">
gstepanovcd77d5a2015-02-06 14:49:34 +020033 {% for header in headers %}
34 <th>
35 <h2>{{ header }}</h2>
36 </th>
37 {% endfor %}
38 {% for row in table %}
39 <tr>
40 {% for data in row %}
41 <td>
42 {{ data }}
43 </td>
44 {% endfor %}
45 </tr>
46 {% endfor %}
47 </table>
48 </div>
gstepanov9eb8bf32015-02-11 20:13:14 +020049 <div>
50 <h2 align="center">
51 <a href="{{ index_url }}">Index page</a>
52 </h2>
53 <h2 align="center">
54 <a href="{{ table_url }}">Details</a>
55 </h2>
56 </div>
gstepanovcd77d5a2015-02-06 14:49:34 +020057 {% endblock %}
58</body>
59</html>