{% extends "base.html" %} {% block title %}{{ database }}{% endblock %} {% block extra_head %} {{ super() }} {% include "_codemirror.html" %} {% endblock %} {% block body_class %}db db-{{ database|to_css_class }}{% endblock %} {% block content %}
{% 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
{% include "_codemirror_foot.html" %} {% endblock %}