{% extends 'base.html' %} {% load static %} {% block title %}Teams | Fox Fitt{% endblock %} {% block content %} {# === TEAM LIST PAGE === Admin-only. Shows every team with supervisor, worker count, pay schedule, and active status. Filter by active/inactive/all; search by name. #}
| Name | Supervisor | Workers | Pay Schedule | Status | Actions |
|---|---|---|---|---|---|
| {{ team.name }} | {% if team.supervisor %} {{ team.supervisor.username }} {% else %} — {% endif %} | {{ team.workers.count }} |
{% if team.pay_frequency %}
{{ team.get_pay_frequency_display }}
{% if team.pay_start_date %}
from {{ team.pay_start_date|date:"d M Y" }} {% endif %} {% else %} Not set {% endif %} |
{% if team.active %} Active {% else %} Inactive {% endif %} | |
| No teams match the current filter. {% if search or active_filter != 'all' %} Clear filters. {% endif %} | |||||