{% extends "base.html" %} {% block title %}Data Table — FastAPI Showcase{% endblock %} {% block content %}
Browse, filter, and sort the dataset
| # | Category | Region | Sales | Profit | Units |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ row.category }} | {{ row.region }} | ${{ "%.2f" | format(row.sales) }} | ${{ "%.2f" | format(row.profit) }} | {{ row.units }} |