Customers table
| Project | Requested Amount (Kshs) |
Loan Amount (Kshs) |
Expected Daily Payment (Kshs) |
Amount Paid (Kshs) |
Balance (Kshs) |
Status | # |
|---|---|---|---|---|---|---|---|
{{customer.name}} |
{{"{:,.2f}".format(loan.loan_amount)}} |
{{"{:,.2f}".format(amount)}} |
{{"{:,.2f}".format(amount/30)}} |
{{"{:,.2f}".format(loan.paid_amount or 0)}} |
{%set p_m = loan.paid_amount | float%}
{{"{:,.2f}".format(amount - p_m)}} |
{% if loan.approved %} Approved {% else %} Not Approved {% endif %} {% if loan.disbursed %} Disbursed {% endif %} {% if loan.fully_paid%} Fully Repaid {% endif %} |
|
{% set current_page = request.args.get('page', none) | int%}
{% set pvis = '' %}
{% set nvis = '' %}
{% if last_page %}
{% set nvis = 'disabled' %}
{% endif %}
{% if current_page == 0 or current_page == 1 %}
{% set current_page = 1 %}
{% set pvis = 'disabled' %}
{% endif %}
{% set next = current_page + 1%}
{% set prev = current_page - 1%}
Previous
Next