chore: Remove HRMS templates

This commit is contained in:
Rucha Mahabal
2022-07-14 11:59:06 +05:30
parent db586afc7b
commit f765428757
8 changed files with 0 additions and 205 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>