{% extends "base.html" %} {% block title %}nikola{% endblock %} {% block content %} {% if error %}

Ошибка:

{{ error }}

{% endif %} {% if data %} {% for table_name, t in data.items() %} {% set rows = t.get("rows", []) %} {% set cols = t.get("columns", []) %}

{{ table_name }} ({{ rows|length }})

{% if rows and cols %}
{% for col in cols %} {% endfor %} {% for row in rows %} {% for col in cols %} {% endfor %} {% endfor %}
{{ col }}
{{ row.get(col) }}
{% else %}

таблица пустая

{% endif %}
{% endfor %} {% endif %} {% endblock %}