{% extends "base.html" %} {% block title %}{{ database }}: {{ table }}{% endblock %} {% block content %}

{{ database }}

{{ table }}

{% for column in columns %}{% endfor %} {% for row in rows %} {% for td in row %} {% endfor %} {% endfor %}
{{ column }}
{{ td }}
{% endblock %}