seitime-frappe/frappe/templates/includes/list/row_template.html
2015-03-23 18:40:08 +05:30

7 lines
233 B
HTML

{% set doc = frappe.get_doc(doc) %}
{% set subject = doc.get(meta.title_field or "name") %}
<div class="web-list-item">
<a class="no-decoration" href="/{{ doc.get_route() }}" no-pjax>
<p>{{ subject }}</p>
</a>
</div>