{% extends "base.html" %} {% block title %}Data Table — Flask Showcase{% endblock %} {% block content %}
{{ rows|length }} rows
{% for row in rows %} {% endfor %}
# Category Region Sales Profit Units
{{ loop.index }} {{ row.category }} {{ row.region }} ${{ "%.2f" | format(row.sales) }} ${{ "%.2f" | format(row.profit) }} {{ row.units }}
Total Sales
Total Profit
Total Units
Avg Profit Margin
{% endblock %} {% block scripts %} {% endblock %}