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

Salary Structure Overview

{% for row in data %} {% endfor %}
Employee Emp Code Gross Earnings (₹) Total Deductions (₹) Net Pay (₹) CTC (₹) Actions
{{ row.employee.full_name }} {{ row.employee.employee_code }} {{ "%.2f"|format(row.gross) }} {{ "%.2f"|format(row.deductions) }} {{ "%.2f"|format(row.net_pay) }} {{ "%.2f"|format(row.ctc) }} View Edit
{% endblock %}