[UPDT] ATTENDANCE : Change in currency section to view prefix or postfix to the amount

This commit is contained in:
Horilla
2024-09-18 15:47:33 +05:30
parent 62ef905513
commit 3189a38ed7

View File

@@ -27,9 +27,15 @@
{% trans "No" %}
{% endif %}
</div>
<div class="oh-sticky-table__td">
{{currency}} {{ acc.penalty_amount }}
</div>
{% if position == 'prefix' %}
<div class="oh-sticky-table__td">
{{currency}} {{ acc.penalty_amount }}
</div>
{% else %}
<div class="oh-sticky-table__td">
{{ acc.penalty_amount }} {{currency}}
</div>
{% endif %}
<div class="oh-sticky-table__td">{{ acc.created_at }}</div>
</div>
{% endfor %}