Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
496 B
HTML
Raw Normal View History

2016-07-19 14:17:33 +05:30
<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 20:34:32 +05:30
{{ frappe.utils.fmt_money(doc.grand_total, currency=doc.currency) }}
2016-07-19 14:17:33 +05:30
</div>
<div class="col-xs-2">
2018-11-26 20:34:32 +05:30
{{ frappe.utils.fmt_money(doc.paid_amount, currency=doc.currency) }}
2016-07-19 14:17:33 +05:30
</div>
<div class="col-xs-2">
2018-11-26 20:34:32 +05:30
{{ frappe.utils.fmt_money(doc.outstanding_amount, currency=doc.currency) }}
2016-07-19 14:17:33 +05:30
</div>
</div>
</a>
</div>