{% extends 'base.html' %} {% block page_title %}Dashboard Overview{% endblock %} {% block content %}
No stock alerts
{% endif %}| Product | Qty | Amount | Time |
|---|---|---|---|
| {{ sale.product.name|truncatechars:20 }} | {{ sale.quantity }} | KSh {{ sale.total_amount|floatformat:2 }} | {{ sale.sale_date|date:"H:i" }} |
| No recent sales | |||
| Borrower | Amount | Due Date | Status |
|---|---|---|---|
| {{ loan.borrower_name|truncatechars:15 }} | KSh {{ loan.amount|floatformat:2 }} | {{ loan.due_date|date:"M d" }} | {% if loan.is_overdue %} Overdue {% else %} Active {% endif %} |
| No active loans | |||