{% extends "_base.html" %} {% import 'tables/_macros.html' as table_macros %} {% block body %}
{% for column in table_results.columns %} {% endfor %} {% for row in table_results.to_numpy().tolist() %} {% for col in row %} {% endfor %} {% endfor %}
{{ column }}
{{ col }}
{% endblock %}