{% extends "main/base.html" %} {% load static %} {% block link %} {{ block.super }} {% endblock %} {% block body %}

{{ transaction }}

{% spaceless %}
{% csrf_token %} {{ form }}
{% endspaceless %}

Invoices

{% for inv in invoices %}
{{ inv.name }}
{% endfor %}

Add Invoice

{% csrf_token %} {{ invoice_form }}
{% endblock %}