<!DOCTYPE html>
<html>
<head><title>{{ title }}</tittle></head>
<body>
<h2>{{ title }}</h2>
{% if rows %}
<table border="1">
<tr>
{% for col in columns %}
<th>{{ col }}</th>
{% endfor %}
</tr>
{% for row in rows %}
<tr>
{% for cell in tow %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% else %}
<p>Нет данных для отображения.</p>
{% endif %}
<br>
<a href="/"> На главную</a>
</table>
</body>
</html>