{% extends "base.html" %}{% block content %}

Payslips & Reports

Employee payslips and operational exports
{% if own_payslips %}

My Payslips

{% for r in own_payslips %}{% endfor %}
PeriodNet Payable
{{ r.period.year }}-{{ r.period.month|stringformat:"02d" }}{{ r.net_payable }}View · PDF
{% endif %}{% if is_report_user %}

Payroll Exports

{% for p in periods %}{% empty %}{% endfor %}
PeriodStatusExport
{{ p.year }}-{{ p.month|stringformat:"02d" }}{{ p.get_status_display }}Payroll CSV{% if p.status == 'LOCKED' %} · Bank Advice{% endif %}
No periods.

Operational Reports

Employee MasterAttendanceLeave RequestsLeave BalanceOTBonus & DeductionSalary StructureLoan/AdvanceFinal Settlement{% if user.is_superuser or perms.audit.view_auditlog %}Audit Log{% endif %}
{% endif %}{% endblock %}