{% extends 'base.html' %} {% load static %} {% block content %}
Tracking your finances for {{ current_month }}
|
{{ transaction.date|date:"M d" }}
{{ transaction.date|date:"Y" }}
|
{{ transaction.description|default:"No description" }}
{{ transaction.category.name|default:"Uncategorized" }}
|
{% if transaction.type == 'income' %}+{% else %}-{% endif %}${{ transaction.amount|floatformat:2 }}{{ transaction.get_type_display }} |
|
No transactions yet. Start by adding one! |
||