18 lines
573 B
HTML
Raw Normal View History

2015-06-01 17:15:42 +05:30
<div class="web-list-item">
2016-01-01 17:23:12 +05:30
<a href="/{{ pathname }}/{{ doc.name }}">
2015-02-23 22:14:12 +05:30
<div class="row">
2016-04-15 14:52:23 +05:30
<div class="col-sm-6">
<span class="indicator {{ doc.indicator_color or "darkgrey" }}">{{ doc.name }}</span>
<div class="small text-muted">{{ doc.items_preview }}</div>
2016-04-15 14:52:23 +05:30
2015-02-23 22:14:12 +05:30
</div>
2016-04-15 14:52:23 +05:30
<div class="col-sm-3 col-xs-5">
2015-02-23 22:14:12 +05:30
{{ doc.get_formatted("grand_total") }}
</div>
2016-04-15 14:52:23 +05:30
<div class="col-sm-3 small text-muted text-right" title="{{ frappe.utils.format_datetime(doc.creation, "medium") }}">
2015-02-23 22:14:12 +05:30
{{ frappe.utils.pretty_date(doc.creation) }}</div>
</div>
</a>
2015-06-01 17:15:42 +05:30
</div>