{% 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 %}
This data as JSON{% if display_rows %}, CSV (advanced){% 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 %}{{ facet_info.name }} {% if facet_hideable(facet_info.name) %} ✖ {% endif %}
{{ table_definition }}{% endif %} {% if view_definition %}
{{ view_definition }}{% endif %} {% endblock %}