{% extends 'base.html' %} {% load static %} {% load format_tags %} {% block title %}Payroll Report | FoxFitt{% endblock %} {% block content %}
{{ start_date|date:"d M Y" }} — {{ end_date|date:"d M Y" }} | {{ project_name }} | {{ team_name }}
{{ start_date|date:"d M Y" }} — {{ end_date|date:"d M Y" }} | {{ project_name }} | {{ team_name }}
| Project | Cost |
|---|---|
| {{ item.project }} | R {{ item.total|money }} |
No data
{% endif %}| Team | Cost |
|---|---|
| {{ item.team }} | R {{ item.total|money }} |
No data
{% endif %}| Project | Cost |
|---|---|
| {{ item.project }} | R {{ item.total|money }} |
No data
{% endif %}| Team | Cost |
|---|---|
| {{ item.team }} | R {{ item.total|money }} |
No data
{% endif %}| Date | Amount Paid |
|---|---|
| {{ item.date|date:"d M Y" }} | R {{ item.total|money }} |
No payments in this period.
{% endif %}| Category | Total |
|---|---|
| {{ item.label }} | R {{ item.total|money }} |
No adjustments in this period.
{% endif %}| Project | Worker-Days | Total Cost |
|---|---|---|
| {{ item.project }} | {{ item.worker_days }} | R {{ item.total|money }} |
No project cost data.
{% endif %}| Team | Worker-Days | Total Cost |
|---|---|---|
| {{ item.team }} | {{ item.worker_days }} | R {{ item.total|money }} |
No team cost data.
{% endif %}| Worker | Days | Total Paid | {% for label in active_adj_labels %}{{ label }} | {% endfor %}
|---|---|---|---|
| {{ w.name }} | {{ w.days }} | R {{ w.total_paid|money }} | {% for val in w.adj_values %}{% if val %}R {{ val|money }}{% else %}-{% endif %} | {% endfor %}
No worker payment data for this period.
{% endif %}