{% extends "base.html" %} {% block title %}Recurring Rules{% endblock %} {% block page_title %}Recurring Transactions{% endblock %} {% block topbar_actions %} Settings
New Rule {% endblock %} {% block content %}
Rules ({{ rules | length }})
{% if rules %} {% for rule in rules %} {% endfor %}
Name Frequency Amount Next Run
{{ rule.name }}
{{ rule.description }}
{{ rule.frequency | title }} {{ rule.transaction_type | title }} {{ rule.amount | currency }} {{ rule.next_run.strftime('%b %d') if rule.next_run else '—' }} Edit
{% else %}

No recurring rules yet.

Create First Rule
{% endif %}
Upcoming (30 days)
{% if upcoming %} {% for item in upcoming[:15] %}
{{ item.description }}
{{ item.date.strftime('%b %d, %Y') }}
{% if item.type == 'income' %}+{% else %}-{% endif %}{{ item.amount | currency }}
{% endfor %} {% else %}

No upcoming recurring transactions.

{% endif %}
{% endblock %}