Merge branch 'develop' into make-image-field-obsolete-in-web-item

This commit is contained in:
Marica
2022-07-25 12:43:08 +05:30
committed by GitHub
1126 changed files with 14526 additions and 222309 deletions

View File

@@ -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>