5ecd143535
- Kein Node.js, kein npm, kein Build-Schritt mehr - HTMX 2.0.4 + PicoCSS 2 vendored in backend/static/ - Jinja2 Templates für alle 9 Seiten (Dashboard, ZFS, Snapshots, Shares, Identities, Logs, Services, Navigator, Login) - HTMX Fragments für Live-Updates (30s Polling Dashboard) - JWT als httpOnly Cookie statt localStorage - Disk Usage zeigt TB/PB korrekt (Jinja2 serverseitig formatiert) - Update-safe: nur Python-Deps, keine npm-Abhängigkeiten Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
419 B
HTML
17 lines
419 B
HTML
{% if not groups %}
|
||
<p>Keine Gruppen gefunden.</p>
|
||
{% else %}
|
||
<table>
|
||
<thead><tr><th>Gruppe</th><th>GID</th><th>Mitglieder</th></tr></thead>
|
||
<tbody>
|
||
{% for group in groups %}
|
||
<tr>
|
||
<td><strong>{{ group.name }}</strong></td>
|
||
<td>{{ group.gid }}</td>
|
||
<td style="font-size:0.85rem">{{ group.members | join(', ') if group.members else '–' }}</td>
|
||
</tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
{% endif %}
|