brotherton-erpnext/erpnext/templates/includes/issue_row.html
2016-05-09 12:30:58 +05:30

17 lines
556 B
HTML

<div class="web-list-item transaction-list-item">
<a href="/issues?name={{ doc.name }}">
<div class="row">
<div class="col-xs-3">
<span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}">
{{ doc.name }}</span>
</div>
<div class="col-xs-6 items-preview text-ellipsis">
{{ doc.subject }}</div>
<div class="col-xs-3 text-right small text-muted">
{{ frappe.format_date(doc.modified) }}
</div>
</div>
</a>
</div>