{% 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 %} {{ super() }} {% endblock %} {% block body_class %}table db-{{ database|to_css_class }} table-{{ table|to_css_class }}{% endblock %} {% block content %}
home / {{ database }}

{{ metadata.title or table }}{% if is_view %} (view){% endif %}

{% block description_source_license %}{% include "_description_source_license.html" %}{% endblock %} {% 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 custom_rows_and_columns_templates %} {% if next_url %}

Next page

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