{% 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. #}
{# === PAGE HEADER === #}

{{ project.name }}

{% if project.active %} Active {% else %} Inactive {% endif %} {% if project.start_date or project.end_date %} {% if project.start_date %}{{ project.start_date|date:"d M Y" }}{% else %}—{% endif %} → {% if project.end_date %}{{ project.end_date|date:"d M Y" }}{% else %}ongoing{% endif %} {% endif %}
{# === TABS === #}
{# === PROFILE TAB === #}
Name
{{ project.name }}
Description
{% if project.description %} {{ project.description|linebreaks }} {% else %} No description. {% endif %}
Status
{% if project.active %} Active {% else %} Inactive {% endif %}
Start Date
{% if project.start_date %}{{ project.start_date|date:"d M Y" }}{% else %}{% endif %}
End Date
{% if project.end_date %}{{ project.end_date|date:"d M Y" }}{% else %}Ongoing{% endif %}
{# === SUPERVISORS TAB === #}
{% for s in supervisors %} {% empty %} {% endfor %}
Username Full Name Email 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 TAB === #}
{% if teams_involved %}

Teams that have worked on this project at some point.

{% for team in teams_involved %}
{{ team.name }} {% if team.supervisor %}
{{ team.supervisor.username }}
{% endif %}
{% if team.active %} Active {% else %} Inactive {% endif %}
{% endfor %}
{% else %}

No teams have been logged on this project yet.

{% endif %}
{# === WORKERS TAB === #}
{% for w in workers_involved %} {% empty %} {% endfor %}
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.
{# === HISTORY TAB === #}
Total Worker-Days
{{ total_worker_days }}
Lifetime Labour Cost
R {{ labour_cost|floatformat:2 }}
Active Date Range
{% if date_range.0 %} {{ date_range.0|date:"d M Y" }}
to {{ date_range.1|date:"d M Y" }} {% else %} No logs yet {% endif %}
Recent Work Logs
{% for log in recent_logs %} {% empty %} {% endfor %}
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.
{% endblock %}