Table Info
{% block quicksearch %}
{% if table.html_form_component and "search" in table.html_enabled_forms %}
{% include "data_explorer/table_search.html" %}
{# ELSE: include "data_explorer/table_filters.html" (disabled for now) #}
{% endif %}
{% endblock %}
{% block updater %}
{% if table.html_form_component and "update_many" in table.html_enabled_forms %}
{% include "data_explorer/table_update_many.html" %}
{% endif %}
{% endblock %}
{% block addnew %}
{% if table.html_form_component and "create" in table.html_enabled_forms %}
{% include "data_explorer/table_add_entry.html" %}
{% endif %}
{% endblock %}
Download
{% include "core/basic_elements/toggle_width_button.html" %}