{% extends 'base.html' %} {% load humanize %} {% block title %}Dashboard - 3ncount{% endblock %} {% block page_title %} Dashboard {% endblock %} {% block page_actions %} New Transaction {% endblock %} {% block content %}
Customers owe us (Pelanggan berhutang)
We owe suppliers (Kita berhutang)
| Date | Type | Description | Contact | Amount | Status |
|---|---|---|---|---|---|
| {{ transaction.date|date:"d/m/Y" }} | {% if transaction.transaction_type == 'INCOME' %} Income {% else %} Expense {% endif %} | {{ transaction.description }} | {% if transaction.contact %} {{ transaction.contact.name }} {% else %} - {% endif %} | RM {{ transaction.amount|floatformat:2|intcomma }} | {% if transaction.is_paid %} Paid {% else %} Unpaid {% endif %} |