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

25 lines
829 B
HTML
Raw Normal View History

2015-06-01 11:45:42 +00:00
<div class="web-list-item">
<a href="/{{ pathname }}/{{ doc.name }}" no-pjax>
2015-02-23 16:44:12 +00:00
<div class="row">
<div class="col-sm-8 col-xs-7">
2015-02-23 16:44:12 +00:00
<div class="row">
<div class="col-sm-9">
<div>{{ doc.name }}</div>
<div class="small text-muted">{{ doc.items_preview }}</div>
</div>
2015-02-23 16:44:12 +00:00
<div class="col-sm-3">
<span class="indicator {{ doc.indicator_color or "darkgrey" }}">
{{ doc.indicator_title or doc.status or "Submitted" }}
</span>
2015-02-23 16:44:12 +00:00
</div>
</div>
</div>
<div class="col-sm-2 col-xs-5 text-right">
{{ doc.get_formatted("grand_total") }}
</div>
<div class="col-sm-2 small text-muted text-right" title="{{ frappe.utils.format_datetime(doc.creation, "medium") }}">
{{ frappe.utils.pretty_date(doc.creation) }}</div>
</div>
</a>
2015-06-01 11:45:42 +00:00
</div>