{% extends 'base.html' %} {% load format_tags %} {% block title %}Team Batch Report | FoxFitt{% endblock %} {% block content %}

Team Batch Report

{{ total_teams }} team{{ total_teams|pluralize }} — lifetime aggregates

{% if rows %}
{% for r in rows %} {% endfor %}
Team Supervisor Active Pay Schedule Workers Days Projects Labour Cost
{{ r.team.name }} {{ r.team.supervisor.username|default:'—' }} {% if r.team.active %} {% else %}{% endif %} {% if r.team.pay_frequency %}{{ r.team.get_pay_frequency_display }}{% else %}—{% endif %} {{ r.worker_count }} {{ r.days_worked }} {% for p in r.projects %}{{ p }}{% endfor %} R {{ r.total_labour_cost|money }}
{% else %}

No teams match the filter. Clear filters.

{% endif %}
{% endblock %}