24 lines
721 B
HTML
Raw Normal View History

2016-04-22 18:53:21 +05:30
<div class="web-list-item transaction-list-item">
<a href="/{{ pathname }}/{{ doc.name }}">
<div class="row">
2016-05-09 12:30:58 +05:30
<div class="col-sm-5">
2016-05-02 11:43:44 +05:30
<span class="indicator small {{ doc.indicator_color or "darkgrey" }}">
2016-05-12 15:22:59 +05:30
{{ doc.name }}</span>
2016-04-22 18:53:21 +05:30
<div class="small text-muted transaction-time"
title="{{ frappe.utils.format_datetime(doc.modified, "medium") }}">
2016-05-02 11:43:44 +05:30
{{ frappe.utils.format_datetime(doc.modified, "medium") }}
2016-05-12 15:22:59 +05:30
</div>
2016-05-09 12:30:58 +05:30
</div>
2016-05-20 16:36:56 +05:30
<div class="col-sm-4 items-preview text-ellipsis small">
2016-05-09 12:30:58 +05:30
{{ doc.items_preview }}
</div>
2016-05-12 15:22:59 +05:30
<div class="col-sm-3 text-right bold">
{{ doc.get_formatted("grand_total") }}
2016-04-22 18:53:21 +05:30
</div>
<!-- <div class="col-sm-3 text-right">
2016-04-15 14:52:23 +05:30
2016-04-22 18:53:21 +05:30
</div> -->
</div>
</a>
2015-06-01 17:15:42 +05:30
</div>