{% extends 'index.html' %} {% block content %} {% load i18n horillafilters %}

{% trans "Payslips" %} - {{ start_date }} to {{ end_date }}

{% trans "Employee" %}
{% trans "Status" %}
{% trans "Batch" %}
{% trans "Gross Pay" %}
{% trans "Deductions" %}
{% trans "Net Pay" %}
{% for payslip in instances %}
Username
{{payslip.employee_id}}
{{payslip.group_name}}
{{payslip.gross_pay|floatformat:2|currency_symbol_position}}
{{payslip.deduction|floatformat:2|currency_symbol_position}}
{{payslip.net_pay|floatformat:2|currency_symbol_position}}
{% csrf_token %}
{% endfor %}
{% endblock content %}