{% extends "core/site_base.html" %} {% block tabtitle %}Data - Simmate{% endblock %} {% block body %} {% simmate_setting "website.lock_data_redistribution" as LOCK_DATA_REDISTRIBUTION %} {# Header #}

Data Explorer

Each option below corresponds to a single table in our database. Select one to explore.

{# Main loop for sections #} {% for section_name, datasets in data_config.items %} {% if datasets and section_name != "HIDDEN" %} {# Section Heading #}

{{ section_name }}

{# Start of the table for the current section #}
{% for dataset in datasets %} {% endfor %}
Dataset Entries (#) Description
{% if dataset.is_redistribution_allowed != False or not LOCK_DATA_REDISTRIBUTION %} {# the extra style is to make the link be the entire cell #} {{ dataset.html_display_name }} {% else %} {% endif %} {% with counts_dict|getitem:dataset.table_name as row_count %} {% if row_count is not None %} {{ row_count|floatformat:0|intcomma }} {% else %} --- {% endif %} {% endwith %} {{ dataset.html_description_short }}
{# End of the table for the current section #} {% endif %} {% endfor %}
{% endblock %}