blob: f938c43a0527b65080bb8fe5fa79810dd72ecf0a [file] [log] [blame]
{% extends "base.html" %}
<html>
<head>
{% block head %}
{{ super() }}
<title>Table of results</title>
{% endblock %}
</head>
<body>
{% block body %}
<h1 align="center">Perf-1 Env</h1>
<div class="table-responsive">
<table class="table" width="600">
<div id="images">
{% for url in urls %}
<div>
<img src="{{ url }}">
</div>
{% endfor %}
</div>
{% for header in headers %}
<th>
<h2>{{ header }}</h2>
</th>
{% endfor %}
{% for row in table %}
<tr>
{% for data in row %}
<td>
{{ data }}
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</div>
<h2 align="center">
<a href="{{ table_url }}">Details</a>
</h2>
{% endblock %}
</body>
</html>