2016-05-02 11:43:44 +05:30

24 lines
708 B
HTML

<div class="web-list-item transaction-list-item">
<a href="/{{ pathname }}/{{ doc.name }}">
<div class="row">
<div class="col-sm-6">
<span class="indicator small {{ doc.indicator_color or "darkgrey" }}">
{{ doc.name }}</span>
<div class="items-preview text-ellipsis">
{{ doc.items_preview }}
</div>
</div>
<div class="col-sm-6 text-right">
<div class="small text-muted transaction-time"
title="{{ frappe.utils.format_datetime(doc.modified, "medium") }}">
{{ frappe.utils.format_datetime(doc.modified, "medium") }}
</div>
{{ doc.get_formatted("grand_total") }}
</div>
<!-- <div class="col-sm-3 text-right">
</div> -->
</div>
</a>
</div>