blob: 1084a3ae8457c01b2d5ac06dcd37ba69d5da91d9 [file] [log] [blame]
{% extends "base.html" %}
<html>
<head>
{% block head %}
{{ super() }}
<title>Table of results</title>
{% endblock %}
</head>
<body>
{% block body %}
<div class="table-responsive">
<table class="table" width="600">
{% 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>
{% endblock %}
</body>
</html>