{% extends "_base.html" %} {% import 'tables/_macros.html' as table_macros %} {% block body %} {{ table_macros.table_nav(table_id, 'statistics') }}
{% for column in table_results.columns %} {% endfor %} {% for row in table_results.to_numpy().tolist() %} {% for col in row %} {% endfor %} {% endfor %}
{{ column }}
{{ col }}
{% for param_name, param_val in request.query_params.multi_items() %} {% if param_name != 'version' %} {% endif %} {% endfor %}
{% endblock %}