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

23 lines
768 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">
<div class="col-sm-4" style='margin-top: -3px;'>
<span class="indicator small {{ doc.indicator_color or ("blue" if doc.docstatus==1 else "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") }}">
{{ frappe.utils.global_date_format(doc.modified) }}
2016-05-12 09:52:59 +00:00
</div>
2016-05-09 07:00:58 +00:00
</div>
<div class="col-sm-5">
<div class="small text-muted items-preview ellipsis ellipsis-width">
{{ doc.items_preview }}
</div>
2016-05-09 07:00:58 +00:00
</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>
</a>
2015-06-01 11:45:42 +00:00
</div>