seitime-frappe/frappe/templates/includes/print_table.html
2016-09-14 12:00:52 +05:30

22 lines
No EOL
372 B
HTML

<table cellpadding=2px cellspacing=0 border=1px style='width:100%; border-collapse:collapse;'>
<thead>
<tr>
{% for col in headings %}
<th>
{{ col }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
{% for val in row %}
<td>
{{ frappe.format(val) }}
</td>
{% endfor %}
</td>
{% endfor %}
</tbody>
</table>