{% extends "base.html" %} {% block title %}{{ category.name }} - Finance Tracker{% endblock %} {% block content %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %}

Total: {{ total_spent|currency }}

{% if expenses %}

Expenses

{% for expense in expenses %} {% endfor %}
Date Description Amount Paid By Tags Actions
{{ expense.date.strftime('%Y-%m-%d') }} {{ expense.description }} {{ expense.amount|currency }} {{ expense.paid_by or '-' }} {{ expense.tags or '-' }} Edit {% if expense.file_path %} ⬇️ {% endif %}
{% else %}

{{ _('empty.no_expenses_title') }}

{{ _('empty.no_expenses_message') }}

+ {{ _('empty.add_expense') }}
{% endif %}
{% endblock %}