{% extends "base.html" %} {% block title %}{{ database }}{% endblock %} {% block content %}
home{% if query %} / {{ database }}{% endif %}

{{ database }}

{% if custom_sql %}

This data as .json, .jsono

{% else %}

download {{ database }}.db

{% endif %}

{% for table in tables %}

{{ table.name }}

{% for column in table.columns[:9] %}{{ column }}{% if not loop.last %}, {% endif %}{% endfor %}{% if table.columns|length > 9 %}...{% endif %}

{{ "{:,}".format(table.table_rows) }} row{% if table.table_rows == 1 %}{% else %}s{% endif %}

{% endfor %} {% if views %}

Views

{% endif %} {% endblock %}