{% extends "base.html" %} {% block content %}
| V. Inicial | V. Moviemientos | V. Final |
|---|---|---|
| $ {{ '{:,.0f}'.format(total_ingresos) }} | $ {{ '{:,.0f}'.format(total_movimientos) }} | $ {{ '{:,.0f}'.format(total_final) }} |
| Cliente | Valor | Cuotas | Interés |
|---|---|---|---|
| {{ loan_detail.client_name }} | $-{{ '{:,.0f}'.format(loan_detail.loan_amount) }} | {{ '{:,.0f}'.format(loan_detail.loan_dues) }} | {{ '{:,.0f}'.format(loan_detail.loan_interest) }}% |
| Descripción | Valor | Adjunto |
|---|---|---|
| {{ withdrawal_detail.description }} | $ {{ '{:,.0f}'.format(withdrawal_detail.amount) }} |
{% if withdrawal_detail.attachment %}
|
| Descripción | Valor | Adjunto |
|---|---|---|
| {{ income_detail.description }} | $ {{ '{:,.0f}'.format(income_detail.amount) }} |
{% if income_detail.attachment %}
|
| Descripción | Valor | Adjunto |
|---|---|---|
| {{ expense_detail.description }} | $ {{ '{:,.0f}'.format(expense_detail.amount) }} |
{% if expense_detail.attachment %}
|
| Cliente | Valor | Cuotas | Interés |
|---|---|---|---|
| {{ renewal_detail.client_name }} | $ -{{ '{:,.0f}'.format(renewal_detail.loan_amount) }} | {{ '{:,.0f}'.format(renewal_detail.loan_dues) }} | {{ '{:,.0f}'.format(renewal_detail.loan_interest) }}% |