feat: add member details popup with attendance and fee exceptions
All checks were successful
Deploy to K8s / deploy (push) Successful in 12s
Build and Push / build (push) Successful in 8s

This commit is contained in:
Jan Novak
2026-03-02 21:41:36 +01:00
parent 99b23199b1
commit 815b962dd7
7 changed files with 512 additions and 16 deletions

View File

@@ -102,6 +102,11 @@
/* Light gray for normal cells */
}
.cell-overridden {
color: #ffa500 !important;
/* Orange for overrides */
}
.nav {
margin-bottom: 20px;
font-size: 12px;
@@ -175,8 +180,11 @@
{% for row in results %}
<tr>
<td>{{ row.name }}</td>
{% for cell in row.months %}
<td class="{% if cell == '-' %}cell-empty{% else %}cell-paid{% endif %}">{{ cell }}</td>
{% for mdata in row.months %}
<td
class="{% if mdata.cell == '-' %}cell-empty{% elif mdata.overridden %}cell-overridden{% else %}cell-paid{% endif %}">
{{ mdata.cell }}
</td>
{% endfor %}
</tr>
{% endfor %}