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

{{ transaction }}

{% spaceless %}
{% csrf_token %} {% for field in form %} {{ field.errors }} {{ field }} {% endfor %}
{% endspaceless %}

Invoices

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

Add Invoice

{% csrf_token %} {% for field in invoice_form %} {{ field.errors }} {{ field }} {% endfor %}
{% endblock %}