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

accueil / {{ database }}

{{ super() }} {% endblock %} {% block content %} {% 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) }} ligne{% 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 key, value in form_hidden_args %} {% endfor %}
{% if extra_wheres_for_ui %}

{{ extra_wheres_for_ui|length }} extra where clause{% if extra_wheres_for_ui|length != 1 %}s{% endif %}

{% endif %} {% include custom_table_templates %} {% if next_url %}

Page suivante

{% endif %} {% endblock %}