{% extends "base.html" %} {% block content %}
{% for day_name in ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'] %}
{{ day_name }}
{% endfor %} {% for week in grid %} {% for day in week %} {% if day is none %}
{% else %}
{{ day }}
{% for bill in bills_by_day.get(day, []) %}
{{ bill.name }} {% if bill.amount %}${{ bill.amount | money }}{% endif %} {% if bill.get('paid') %}{% endif %}
{% endfor %}
{% endif %} {% endfor %} {% endfor %}
{% for cat, color in colors.items() %} {{ cat }} {% endfor %}
Manage Bills Weekly Overview →
{% endblock %}