brotherton-erpnext/erpnext/templates/includes/fee/fee_row.html

19 lines
496 B
HTML
Raw Normal View History

2016-07-19 08:47:33 +00:00
<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">
2018-11-26 15:04:32 +00:00
{{ frappe.utils.fmt_money(doc.grand_total, currency=doc.currency) }}
2016-07-19 08:47:33 +00:00
</div>
<div class="col-xs-2">
2018-11-26 15:04:32 +00:00
{{ frappe.utils.fmt_money(doc.paid_amount, currency=doc.currency) }}
2016-07-19 08:47:33 +00:00
</div>
<div class="col-xs-2">
2018-11-26 15:04:32 +00:00
{{ frappe.utils.fmt_money(doc.outstanding_amount, currency=doc.currency) }}
2016-07-19 08:47:33 +00:00
</div>
</div>
</a>
</div>