{% extends 'base.html' %} {% block title %}Dashboard{% endblock %} {% block content %}
| Product | Qty | Revenue |
|---|---|---|
| {{ p.product__name }} | {{ p.total_qty|floatformat:0 }} | {{ business.currency }} {{ p.total_revenue|floatformat:0 }} |
| No data | ||
| Category | Amount |
|---|---|
| {{ e.category__name }} | {{ business.currency }} {{ e.total|floatformat:0 }} |
| No expenses | |
| Ref | Customer | Total | Date |
|---|---|---|---|
| {{ sale.reference }} | {{ sale.customer_display }} | {{ business.currency }} {{ sale.total|floatformat:0 }} | {{ sale.date|date:"d M" }} |
| No sales yet | |||
| Description | Category | Amount | Date |
|---|---|---|---|
| {{ expense.description }} | {{ expense.category.name }} | {{ business.currency }} {{ expense.amount|floatformat:0 }} | {{ expense.date|date:"d M" }} |
| No expenses yet | |||
| PO | Supplier | Due Date | Balance |
|---|---|---|---|
| {{ po.reference }} | {{ po.supplier.name }} | {% if po.due_date %}{{ po.due_date }}{% else %}โ{% endif %} {% if po.due_date and po.due_date < today %} Overdue {% endif %} | {{ business.currency }} {{ po.balance_due|floatformat:0 }} |