{% extends "base.html" %} {% block title %}{{ database }}{% endblock %} {% block extra_head %} {% if columns %} {% endif %} {% endblock %} {% block content %}
{{ column }} | {% endfor %}
---|
{% if td == None %}{{ " "|safe }}{% else %}{{ td }}{% endif %} | {% endfor %}
{% for column in table.columns[:9] %}{{ column }}{% if not loop.last %}, {% endif %}{% endfor %}{% if table.columns|length > 9 %}...{% endif %}
{{ "{:,}".format(table.count) }} row{% if table.count == 1 %}{% else %}s{% endif %}
... and {{ "{:,}".format(hidden_count) }} hidden table{% if hidden_count == 1 %}{% else %}s{% endif %}
{% endif %} {% if views %}Download SQLite DB: {{ database }}.db
{% endblock %}