{% if title %}

{{ __(title) }}


{% endif %} {% if subtitle %} {{ subtitle }}
{% endif %} {% for col in columns %} {% if col.name && col._id !== "_check" %} {% endif %} {% endfor %} {% for row in data %} {% for col in columns %} {% if col.name && col._id !== "_check" %} {% var value = col.fieldname ? row[col.fieldname] : row[col.id]; %} {% endif %} {% endfor %} {% endfor %}
{{ __(col.name) }}
{{ col.formatter ? col.formatter(row._index, col._index, value, col, row, true) : col.format ? col.format(value, row, col, data) : col.docfield ? frappe.format(value, col.docfield) : value }}