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

{{ database }}

{{ table }}{% if total_rows != None %} ({{ total_rows }} total row{% if total_rows == 1 %}{% else %}s{% endif %} in this table){% endif %}

{% if primary_keys and row_link %}{% endif %} {% for column in columns %}{% endfor %} {% for row in rows %} {% if primary_keys and row_link %} {% endif %} {% for td in row %} {% endfor %} {% endfor %}
Link{{ column }}
{{ row_link(row) }}{{ td }}
{% if took_ms %}Took {{ took_ms }}{% endif %} {% endblock %}