{% extends "base.html" %} {% block content %}

Add a Bill

{% if bills %}

Your Bills ({{ bills | length }} total)

{% for b in bills | sort(attribute='due_day') %} {% endfor %}
Due Day Name Amount Category Autopay Remind Me Notes
{{ b.due_day }} {{ b.name }} {% if b.amount %}${{ b.amount | money }}{% else %}varies{% endif %} {% if b.category %} {{ b.category }}{% if b.subcategory %} › {{ b.subcategory }}{% endif %} {% endif %} {{ b.notes }}
{% else %}

No bills yet. Add your first one above.

{% endif %}
Run reminders now to test your email & Mac notifications:
{% endblock %}