WIP reporting on actions taken
This commit is contained in:
@@ -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 %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user