| {% 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">Perf-1-Env</h1> |
| <table class="table table-bordered" width="600"> |
| {% for header in headers %} |
| <th> |
| {{ header }} |
| </th> |
| {% endfor %} |
| {% 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> |