{% extends 'base.html' %} {% load static %} {% block title %}Projects | Fox Fitt{% endblock %} {% block content %} {# === PROJECT LIST PAGE === Admin-only. Shows every project with supervisor summary, worker count, active status, and date range. Filter by active/inactive/all; search by name. #}
| Name | Supervisors | Workers | Timeline | Status | Actions |
|---|---|---|---|---|---|
| {{ p.name }} | {% with first=p.supervisors.first total=p.supervisors.count %} {% if first %} {{ first.username }} {% if total > 1 %} and {{ total|add:"-1" }} more {% endif %} {% else %} — {% endif %} {% endwith %} | {{ row.worker_count }} | {% if p.start_date %} {{ p.start_date|date:"d M Y" }} {% else %} — {% endif %} → {% if p.end_date %} {{ p.end_date|date:"d M Y" }} {% else %} ongoing {% endif %} | {% if p.active %} Active {% else %} Inactive {% endif %} | |
| No projects match the current filter. {% if search or active_filter != 'all' %} Clear filters. {% endif %} | |||||