18 lines
573 B
HTML
18 lines
573 B
HTML
<div class="web-list-item">
|
|
<a href="/{{ pathname }}/{{ doc.name }}">
|
|
<div class="row">
|
|
<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>
|
|
|
|
</div>
|
|
<div class="col-sm-3 col-xs-5">
|
|
{{ doc.get_formatted("grand_total") }}
|
|
</div>
|
|
<div class="col-sm-3 small text-muted text-right" title="{{ frappe.utils.format_datetime(doc.creation, "medium") }}">
|
|
{{ frappe.utils.pretty_date(doc.creation) }}</div>
|
|
</div>
|
|
</a>
|
|
</div>
|