brotherton-erpnext/erpnext/templates/includes/issue_row.html
2016-01-01 17:24:37 +05:30

16 lines
535 B
HTML

<div class="web-list-item">
<a class="no-decoration" href="/issues?name={{ doc.name }}">
<div class="row">
<div class="col-xs-8">
<span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}">
{{ doc.name }}</span>
<span style="margin-left: 15px;">
{{ doc.subject }}</span>
</div>
<div class="col-xs-4 text-right small text-muted">
{{ frappe.format_date(doc.modified) }}
</div>
</div>
</a>
</div>