{% macro column_chooser(toggles, locale) %} {% endmacro %} {% macro canonical_table(title, description=none, pagination=none, toolbar=none, form_action=none, locale='en') %}

{{ title }}

{% if description %}
{{ description }}
{% endif %} {% if toolbar %}
{% if toolbar.hidden %}{% for hname, hvalue in toolbar.hidden.items() %}{% endfor %}{% endif %} {% set ns = namespace(chooser_rendered=false) %} {% for field in toolbar.fields %} {% if field.type == "date_range" %} {% set dr_id = field.name if field.name else "date" %}
{% if field.label %}{% endif %}
{% elif field.type == "text" %} {% if toolbar.column_toggles and not ns.chooser_rendered %}{{ column_chooser(toolbar.column_toggles, locale) }}{% set ns.chooser_rendered = true %}{% endif %} {% elif field.type == "select" %} {% elif field.type == "checkboxes" %} {% endif %} {% endfor %} {% if toolbar.column_toggles and not ns.chooser_rendered %}{{ column_chooser(toolbar.column_toggles, locale) }}{% endif %} {% if toolbar.entries %}
{% if locale == 'ru' %}Показать{% else %}Show{% endif %} {% if locale == 'ru' %}записей{% else %}entries{% endif %}
{% endif %} {% if toolbar.search %} {% endif %} {% for action in toolbar.actions %} {% if action.href %}{{ action.label }}{% else %}{{ action.label }}{% endif %} {% endfor %} {% if toolbar.reset and toolbar.reset.href %}{{ toolbar.reset.label }}{% endif %} {% if toolbar.apply %}{% endif %}
{% endif %}
{{ caller() }} {% if pagination and pagination.pages %} {% endif %}
{% endmacro %}