{% extends "base.html" %} {% block title %}Dashboard - Fin{% endblock %} {% block content %} {% if show_no_data %}
No accounts selected
Select one or more accounts using the filter above.
Cash flow for {{ current_period.period_label }}: Income ${{ "%.0f"|format(current_period.income_cents / 100) }}, Expenses ${{ "%.0f"|format((current_period.recurring_cents + current_period.discretionary_cents) / 100) }}, Net {{ 'kept' if current_period.net_cents >= 0 else 'over' }} ${{ "%.0f"|format((current_period.net_cents / 100) | abs) }}.
No data for this period
Try syncing your transactions or selecting a different date range.