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

{{ database }}

{{ table }}{% if total_rows != None %} ({{ "{:,}".format(total_rows) }} total row{% if total_rows == 1 %}{% else %}s{% endif %} in this table){% endif %}

{% for column in display_columns %}{% endfor %} {% for row in rows %} {% for td in row %} {% if not use_rowid or (use_rowid and not loop.first) %} {% endif %} {% endfor %} {% endfor %}
{% if use_rowid %}rowid{% else %}Link{% endif %}{{ column }}
{{ row_link(row) }}{{ td }}
{% if took_ms %}Took {{ took_ms }}{% endif %} {% endblock %}