{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Sales Calendar - {{ brand_name }}{% endblock %} {% block body_class %}calendar-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
| Mon | Tue | Wed | Thu | Fri | Sat | Sun |
|---|---|---|---|---|---|---|
| {% else %} {% set date_key = "%04d-%02d-%02d"|format(year, month, day) %} |
{{ day }}
{% if date_key in sales_by_day %}
{{ currency_symbol }}{{ "%.2f"|format(sales_by_day[date_key].amount) }}
{{ sales_by_day[date_key].count }} sale(s)
No sales
{% endif %}
|
{% endif %}
{% endfor %}
Permanently delete sales records older than a selected period. This action cannot be undone.