brotherton-erpnext/erpnext/templates/includes/transaction_row.html

24 lines
721 B
HTML
Raw Normal View History

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