{% extends "ui/templates/base/layout.html" %} {% block content %}
{% include "modules/employees/templates/employees/_my_workspace_tabs.html" %}

My Payslips

View your generated monthly payslips.

{% if not employee %}
Your user is not linked to an employee profile.
{% else %}
{% for row in rows %}{% else %}{% endfor %}
PeriodGrossDeductionsNet PayStatus
{{ '%02d' % row.pay_month }}/{{ row.pay_year }}{{ row.gross_amount }}{{ row.deduction_amount }}{{ row.net_amount }}{{ row.status.title() }}
No payslips generated yet.
{% endif %}
{% endblock %}