{% extends "finances/layout.html" %} {% load finances_tags %} {% load crispy_forms_tags %} {% block title %} Add a Transaction {% endblock %} {% block content %}
{# Main Body #}

Add a transaction here.

{% csrf_token %} {{ form|crispy }}




Transactions

The last 5 added transactions are shown here, plus any you add in this current session. If you would like to view all transactions, visit the Historic Transactions page. {# TODO: Add a link here. #}

{% for transaction in transactions %} {% endfor %}
Date Amount Category Payment Method Notes
{{ transaction.date }} {{ transaction.amount|currency }} {{ transaction.category }} {{ transaction.payment_method }} {{ transaction.notes }}
{# Sidebar #}

Summary

You can put any information here you'd like.

  • Latest Posts
  • Announcements
  • Calendars
  • etc

{% endblock %}