{% extends 'base.html' %} {% load humanize %} {% block title %}Transactions - 3ncount{% endblock %} {% block page_title %} All Transactions {% endblock %} {% block page_actions %} New Transaction {% endblock %} {% block content %}
| Date | Reference | Type | Description | Contact | Amount | Payment | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ transaction.date|date:"d/m/Y" }} | {{ transaction.reference_no }} | {% if transaction.transaction_type == 'INCOME' %} Income {% else %} Expense {% endif %} |
{{ transaction.description }}
|
{% if transaction.contact %} {{ transaction.contact.name|truncatewords:3 }} {% else %} - {% endif %} | RM {{ transaction.amount|floatformat:2|intcomma }} | {{ transaction.get_payment_method_display }} | {% if transaction.is_paid %} Paid {% else %} Unpaid {% endif %} | |
|
No transactions found {% if request.GET %} Try adjusting your filters or clear all filters {% else %} Create your first transaction to get started {% endif %} |
||||||||