WIP reporting on actions taken

This commit is contained in:
2026-06-16 09:15:18 -04:00
parent b2f84a27cd
commit bc3e178676
2 changed files with 15 additions and 3 deletions

View File

@@ -39,6 +39,7 @@
<th>User</th>
<th>Total Hours Worked</th>
<th>Paid Hours</th>
<th>Actions</th>
</tr>
{% for report in all_user_reports %}
@@ -46,6 +47,13 @@
<td>{{ report.name }}</td>
<td>{{ report.total_hours }}</td>
<td>{{ report.paid_hours }}</td>
<td>
<ul>
{% for action in report.actions %}
<li>{{ action }}</li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}