{% macro data_table(headers, rows, id="data-table", sortable=true) %}
{% for header in headers %} {% endfor %} {% for row in rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{% if sortable %} {% endif %} {% endmacro %}