{% extends 'base.html' %} {% load static %} {% block title %}{{ project.name }} | Projects | Fox Fitt{% endblock %} {% block content %} {# === PROJECT DETAIL PAGE === Admin-only, read-only view with 5 tabs: Profile · Supervisors · Teams · Workers · History. #}
| Username | Full Name | Staff | |
|---|---|---|---|
| {{ s.username }} | {% if s.first_name or s.last_name %} {{ s.first_name }} {{ s.last_name }} {% else %} — {% endif %} | {% if s.email %}{{ s.email }}{% else %}—{% endif %} | {% if s.is_staff %} {% else %} — {% endif %} |
| No supervisors assigned. | |||
Teams that have worked on this project at some point.
No teams have been logged on this project yet.
{% endif %}| Name | ID Number | Daily Rate | Status |
|---|---|---|---|
| {{ w.name }} | {{ w.id_number }} | R {{ w.daily_rate|floatformat:2 }} | {% if w.active %} Active {% else %} Inactive {% endif %} |
| No workers have logged attendance on this project. | |||
| Date | Team | Workers | Supervisor |
|---|---|---|---|
| {{ log.date|date:"d M Y" }} | {% if log.team %} {{ log.team.name }} {% else %} — {% endif %} | {{ log.workers.count }} | {% if log.supervisor %}{{ log.supervisor.username }}{% else %}—{% endif %} |
| No work logs yet. | |||