{% extends "core/site_base.html" %} {% block tabtitle %}{{ table.table_name }} Data - Simmate{% endblock %} {% block body %}
{# Buttons & Sidebars #}
  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" %}
{# Search Results #} {% block search_results %}
{% if page.object_list %} {% block search_results_table %} {% if table.html_form_component and "update_many" in table.html_enabled_forms %} {% include table.html_entries_template with enable_select=True entries=page.object_list %} {% else %} {% include table.html_entries_template with enable_select=False entries=page.object_list %} {% endif %} {% endblock %} {% include "data_explorer/pagination.html" %} {% else %} {% endif %}
{% endblock %} {% endblock %}