blob: 75cef20a40191ce4007af62f579af3fd61e89ea2 [file] [log] [blame]
{% extends "base.html" %}
<html>
<head>
{% block head %}
{{ super() }}
<title>Table of results</title>
{% endblock %}
</head>
<body>
{% block body %}
<h1 align="center">Lab name goes here:-)</h1>
<table class="table" width="600">
{% for row in table %}
<tr>
{% for data in row %}
<td>
{{ data }}
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</div>
<h2 align="center">
<a href="{{ back_url }}">Back</a>
</h2>
{% endblock %}
</body>
</html>