{% load static %} {% load i18n %} {% load horillafilters %} {% if records %}
{% if "leave"|app_installed %}
{% trans "Leave Type" %}
{% trans "Minus Days" %}
{% trans "Deducted From " %}{% trans "CFD" %}
{% endif %}
{% trans "Penalty amount" %}
{% trans "Created Date" %}
{% for acc in records %}
{% if "leave"|app_installed %}
{{ acc.leave_type_id }}
{{ acc.minus_leaves }}
{{acc.deduct_from_carry_forward|yes_no}}
{% endif %}
{{ acc.penalty_amount|currency_symbol_position }}
{{ acc.created_at }}
{% endfor %}
{% else %}
Page not found. 404.
{% trans "No penalties found" %}
{% endif %}