mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-23 06:59:20 +00:00
Merge branch 'develop' into make-image-field-obsolete-in-web-item
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
<table class='table table-bordered'>
|
||||
<caption>{{title}}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
{% for key in keys %}
|
||||
<th {% if key == "Total Pay"%} style="text-align: right;" {% endif %}> {{ key }} </th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for ss_dict in ss_list %}
|
||||
<tr>
|
||||
{% for key, value in ss_dict.items()|sort %}
|
||||
<td {% if key == "Total Pay"%} align = "right" {% endif %}> {{value}} </td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user