{% extends "base.html" %} | |
<html> | |
<head> | |
{% block head %} | |
{{ super() }} | |
<title>Table of results</title> | |
{% endblock %} | |
</head> | |
<body> | |
<div> | |
{% include 'lab_header.html' %} | |
</div> | |
{% 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> |