{% extends "base.html" %} {% block title %}{{ database }}: {{ table }}: {% if filtered_table_rows_count or filtered_table_rows_count == 0 %}{{ "{:,}".format(filtered_table_rows_count) }} row{% if filtered_table_rows_count == 1 %}{% else %}s{% endif %}{% endif %} {% if human_description_en %}where {{ human_description_en }}{% 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_count or human_description_en %}

{% if filtered_table_rows_count or filtered_table_rows_count == 0 %}{{ "{:,}".format(filtered_table_rows_count) }} row{% if filtered_table_rows_count == 1 %}{% else %}s{% endif %}{% endif %} {% if human_description_en %}{{ human_description_en }}{% endif %}

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

View and edit SQL

{% endif %} {% if suggested_facets %}

Suggested facets: {% for facet in suggested_facets %}{{ facet.name }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {% if facets_timed_out %}

These facets timed out: {{ ", ".join(facets_timed_out) }}

{% endif %} {% if facet_results %}
{% for facet_info in sorted_facet_results %}

{{ facet_info.name }} {% if facet_hideable(facet_info.name) %} {% endif %}

{% endfor %}
{% endif %} {% include custom_rows_and_columns_templates %} {% if next_url %}

Next page

{% endif %} {% if display_rows %}

Advanced export

JSON shape: default, array{% if primary_keys %}, object{% endif %}

CSV options: {% if expandable_columns %}{% endif %} {% if next_url %}{% endif %} {% for key, value in url_csv_args.items() %} {% if key != "_labels" %} {% endif %} {% endfor %}

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