brotherton-erpnext/erpnext/templates/includes/fee/fee_row.html
2018-11-26 20:34:32 +05:30

19 lines
496 B
HTML

<div class="web-list-item">
<a href = "/fees/{{doc.name}}/">
<div class="row">
<div class="col-xs-6">
{{ doc.program }}
</div>
<div class="col-xs-2">
{{ frappe.utils.fmt_money(doc.grand_total, currency=doc.currency) }}
</div>
<div class="col-xs-2">
{{ frappe.utils.fmt_money(doc.paid_amount, currency=doc.currency) }}
</div>
<div class="col-xs-2">
{{ frappe.utils.fmt_money(doc.outstanding_amount, currency=doc.currency) }}
</div>
</div>
</a>
</div>