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

Salary Assignments

Effective-dated employee salary history
Assign Salary
{% for x in items %}{% empty %}{% endfor %}
EmployeeStructureEffective FromEffective ToGrossBasicOT
{{ x.employee }}{{ x.structure }}{{ x.effective_from }}{{ x.effective_to|default:"Current" }}{{ x.gross_salary }}{{ x.basic_salary }}{{ x.ot_eligible|yesno:"Yes,No" }}
No salary assignments.
{% if page_obj and page_obj.paginator.num_pages > 1 %}
{% if page_obj.has_previous %}Previous{% endif %}Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} ยท {{ page_obj.paginator.count }} records{% if page_obj.has_next %}Next{% endif %}
{% endif %}{% endblock %}