{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block extra_css %} .fx-card { background: #0f172a; border-color: #1e293b; color: #f1f5f9; cursor: pointer; transition: all .2s; } .fx-card:hover { border-color: #3b82f6 !important; } .period-btn.active { background: #3b82f6; color: #fff; border-color: #3b82f6; } {% endblock %} {% block topbar_actions %}
{% endblock %} {% block content %}No expenses this period.
{% endif %}No accounts. Add one.
{% endif %}| Date | Description | Category | Amount |
|---|---|---|---|
| {{ txn.date.strftime('%b %d') }} |
{{ txn.description }}
{{ txn.account.name if txn.account else '—' }}
|
{% if txn.category %} {{ txn.category.name }} {% else %}—{% endif %} | {% if txn.transaction_type=='income' %}+{% else %}-{% endif %}{{ txn.amount | currency }} |
No transactions yet. Add one.
{% endif %}