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

Teams

{{ total_count }} team{{ total_count|pluralize }} {% if q %} matching "{{ q }}"{% endif %} {% if status != 'all' %} — {{ status|capfirst }} only{% endif %}

{% if teams %}
{% for t in teams %} {% endfor %}
Name Supervisor Workers Pay Schedule Active Actions
{{ t.name }} {{ t.supervisor.username|default:'—' }} {{ t.workers_count }} {% if t.pay_frequency %}{{ t.get_pay_frequency_display }}{% if t.pay_start_date %} from {{ t.pay_start_date|date:"d M Y" }}{% endif %}{% else %}—{% endif %} {% if t.active %}Active {% else %}Inactive{% endif %}
{% else %}

No teams{% if q %} match "{{ q }}"{% endif %}. {% if q or status != 'active' %}
Clear filters{% endif %}

{% endif %}
{% endblock %}