blob: c54f9dca103925bc3543812d62585c6ca4c23ea3 [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">
gstepanovbdc406b2015-02-11 17:35:55 +020016 <table cellspacing="20">
17 {% for url in urls %}
18 {% if loop.index is divisibleby 2 %}
19 <tr>
20 <td>
21 <img src="{{ url }}">
22 </td>
23 {% else %}
24 <td>
25 <img src="{{ url }}">
26 </td>
27 </tr>
28 {% 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>
49 <h2 align="center">
50 <a href="{{ table_url }}">Details</a>
51 </h2>
52 {% endblock %}
53</body>
54</html>