{% extends "base.html" %} {% block title %}{{ database }}: {{ table }}: {% if filtered_table_rows or filtered_table_rows == 0 %}{{ "{:,}".format(filtered_table_rows) }} row{% if filtered_table_rows == 1 %}{% else %}s{% endif %}{% endif %} {% if human_filter_description %}where {{ human_filter_description }}{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
home / {{ database }}

{{ table }}{% if is_view %} (view){% endif %}

{% if filtered_table_rows or human_filter_description %}

{% if filtered_table_rows or filtered_table_rows == 0 %}{{ "{:,}".format(filtered_table_rows) }} row{% if filtered_table_rows == 1 %}{% else %}s{% endif %}{% endif %} {% if human_filter_description %}where {{ human_filter_description }}{% endif %}

{% endif %}
{% if supports_search %}
{% endif %} {% for column, lookup, value in filters.selections() %}
{% endfor %}
{% if query.sql %}

View and edit SQL

{% endif %}

This data as .json, .jsono

{% include "_rows_and_columns.html" %} {% if next_url %}

Next page

{% endif %} {% if table_definition %}
{{ table_definition }}
{% endif %} {% if view_definition %}
{{ view_definition }}
{% endif %} {% endblock %}