Project detail: Recent Work Logs rows open payroll modal (admin only)

Admins see cursor:pointer + data-log-id on each row. Click opens the
shared modal from base.html. Supervisors unchanged.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Konrad du Plessis 2026-04-22 17:30:07 +02:00
parent b06c1a4949
commit 6f4748f4ab

View File

@ -164,7 +164,7 @@
<thead><tr><th>Date</th><th>Team</th><th class="text-end">Workers</th></tr></thead>
<tbody>
{% for log in recent_logs %}
<tr>
<tr {% if user.is_staff or user.is_superuser %}class="work-log-row" data-log-id="{{ log.id }}" style="cursor: pointer;"{% endif %}>
<td>{{ log.date|date:"d M Y" }}</td>
<td>{{ log.team.name|default:'—' }}</td>
<td class="text-end">{{ log.workers.count }}</td>