diff --git a/core/templates/core/report.html b/core/templates/core/report.html index 04fd31d..6760f97 100644 --- a/core/templates/core/report.html +++ b/core/templates/core/report.html @@ -90,15 +90,74 @@ +{# === CHAPTER I — Lifetime Context === #} +
| Project | +Start | +Working Days | +Total Cost | +Avg R / Working Day | +
|---|---|---|---|---|
| {{ item.project }} | +{% if item.start_date %}{{ item.start_date|date:"d M Y" }}{% else %}—{% endif %} | +{{ item.working_days|default:"—" }} | +R {{ item.total|money }} | +{% if item.working_days %}R {{ item.avg_per_working_day|money }}{% else %}—{% endif %} | +
No lifetime project data.
{% endif %} +| Team | Total Cost |
|---|---|
| {{ item.team }} | R {{ item.total|money }} |
No lifetime team data.
{% endif %} +