24 lines
708 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">
<div class="col-sm-6">
2016-05-02 11:43:44 +05:30
<span class="indicator small {{ doc.indicator_color or "darkgrey" }}">
{{ doc.name }}</span>
<div class="items-preview text-ellipsis">
2016-04-22 18:53:21 +05:30
{{ doc.items_preview }}
</div>
</div>
2016-05-02 11:43:44 +05:30
<div class="col-sm-6 text-right">
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-04-22 18:53:21 +05:30
</div>
2016-05-02 11:43:44 +05:30
{{ 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>