feat(templates): add edit action column to servers list

- add a new "Aktion" column to the servers list table
- include an edit link for each server entry for easy access
This commit is contained in:
nocci 2025-12-06 13:34:12 +00:00
parent 05cdb0494a
commit cef7e94fa1

View file

@ -65,6 +65,7 @@
<th class="px-3 py-2 text-left">Location</th>
<th class="px-3 py-2 text-left">IPv4</th>
<th class="px-3 py-2 text-right">Kosten</th>
<th class="px-3 py-2 text-right">Aktion</th>
</tr>
</thead>
<tbody>
@ -111,6 +112,11 @@
<span class="text-slate-500"></span>
{% endif %}
</td>
<td class="px-3 py-2 text-right text-slate-200">
<a href="/servers/{{ s.id }}/edit" class="text-indigo-300 hover:text-indigo-200 underline text-xs">
Bearbeiten
</a>
</td>
</tr>
{% endfor %}
</tbody>