<!DOCTYPE html>
<html>
<head><title>{{ title }}</title></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 row %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
{% else %}
<p>Нет данных для отображения.</p>
{% endif %}
<br>
<a href="/">← На главную</a>
</body>
</html>