{% extends 'index.html' %} {% load static %} {% load l10n %} {% load humanize %} {% block content %}

Transactions

Add Transaction
{% for x in transactions %} {% empty %} {% endfor %}
Date   Type   Transaction   Location   Amount   Inv. #   View Edit
{{ x.date }} {{ x.trans_type }} {{ x.transaction }} {{ x.keyword }} ${{ x.amount|floatformat:2|intcomma }} {{ x.invoice_numb }}
No transactions found for this filter.
{% for x in transactions %}

Type: {{ x.trans_type }}
Location: {{ x.keyword }}
Amount: $ {{ x.amount|floatformat:2|intcomma }}
Invoice #: {{ x.invoice_numb }}
{% empty %}
No transactions found for this filter.
{% endfor %}
{% endblock %}