{% extends "main/layout.html" %} {% load humanize %} {% block content %}
Nu. | Naran | Kategoria | Pojisaun | Grau | Gross Salary | Tax (10%) | Social Security (4%) | Net |
---|---|---|---|---|---|---|---|---|
{{ forloop.counter }} | {{ obj.employee }} | {{ obj.category }} | {% if obj.position %}{{ obj.position }}{% endif %} | {% if obj.position %}{{ obj.grade }}{% endif %} | {% if obj.salary.gross %}$ {{ obj.salary.gross|intcomma }}{% else %}$ 0.0 {% endif %} | {% if obj.salary.tax %}$ {{ obj.salary.tax|intcomma }}{% else %}$ 0.0 {% endif %} | {% if obj.salary.social %}$ {{ obj.salary.social|intcomma }}{% else %}$ 0.0 {% endif %} | {% if obj.salary.net %}$ {{ obj.salary.net|intcomma }}{% else %}$ 0.0 {% endif %} |