{% load format_tags %}
| Payroll Report | {{ start_date|date:"d F Y" }} – {{ end_date|date:"d F Y" }} |
|
Paid This Period
R {{ total_paid_out|money }}
{{ start_date|date:"d M Y" }} – {{ end_date|date:"d M Y" }}
|
Outstanding Now
R {{ current_outstanding.total|money }}
as of {{ current_as_of|date:"d M Y H:i" }}
|
|
FoxFitt Avg / Day
R {{ company_avg_daily|money }}
lifetime avg · {{ company_working_days }} working days
|
FoxFitt Avg / Month
R {{ company_avg_monthly|money }}
lifetime avg · ~30.44 days/month
|
| Project | Start | Last Activity | Working Days | Total Cost | Avg R / Working Day |
|---|---|---|---|---|---|
| {{ item.project }} | {% if item.start_date %}{{ item.start_date|date:"d M Y" }}{% else %}—{% endif %} | {% if item.last_activity %}{{ item.last_activity|date:"d M Y" }}{% else %}—{% endif %} | {% if item.working_days %}{{ item.working_days }}{% else %}—{% endif %} | R {{ item.total|money }} | {% if item.working_days %}R {{ item.avg_per_working_day|money }}{% else %}—{% endif %} |
No lifetime project data.
{% endif %}| Team | Total Cost |
|---|---|
| {{ item.team }} | R {{ item.total|money }} |
No lifetime team data.
{% endif %}|
Total Paid Out
R {{ total_paid_out|money }}
|
Worker-Days
{{ total_worker_days }}
|
Loans Issued
R {{ loans_issued|money }}
|
|
Loans Outstanding
R {{ loans_outstanding|money }}
|
Advances Issued
R {{ advances_issued|money }}
|
Advances Outstanding
R {{ advances_outstanding|money }}
|
LABOUR COST — PROJECTS{% if cost_per_project %}
No project cost data. {% endif %} |
LABOUR COST — TEAMS{% if cost_per_team %}
No team cost data. {% endif %} |
PAYMENTS BY DATE{% if payments_by_date %}
No payments in this period. {% endif %} |
ADJUSTMENTS{% if adjustment_totals %}
No adjustments in this period. {% endif %} |
| WORKER | DAYS | TOTAL PAID | {% for label in active_adj_labels %}{{ label|upper }} | {% 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 %}| Team | {% for col in team_project_activity.columns %}{{ col.name }} | {% endfor %}Total | |
|---|---|---|---|
| {{ row.team_name }} | {% for col in team_project_activity.columns %} {% with days=row.cells_by_project_id|dictlookup:col.id %} {% if days %}{{ days }} | {% else %}— | {% endif %} {% endwith %} {% endfor %}{{ row.row_total }} |
| Total | {% for col in team_project_activity.columns %}{{ team_project_activity.col_totals|dictlookup:col.id }} | {% endfor %}{{ team_project_activity.grand_total }} |
No team × project activity in this period.
{% endif %}