Skip to content

Commit

Permalink
added html subpage for mpsks
Browse files Browse the repository at this point in the history
added a html containing the table information for the mpsk clients
#498
  • Loading branch information
agmes4 committed Dec 17, 2024
1 parent 3d54875 commit 48b0784
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions sipa/templates/usersuite/mpsks_things.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{% extends "base.html" %}

{% import "macros/forms.html" as forms %}
{% set page_title = _("MPSK Wi-Fi MAC-Adresse ändern") %}
{% block content %}
{% include "heading.html" %}
<table class="table table-striped">
<tr>
<th>{{ _("Greät") }}</th>
<th>{{ _("Wi-Fi MAC") }}</th>
<th>{{ _("Aktion") }}</th>
</tr>
{% for client in clients %}
<tr>

<td>{{ client[0] }}</td>
<td>{{ client[1] }}</td>
<td><a>Haööü</a>/td>
</tr>
{% endfor %}
<tr>
<td colspan="3">
<span class="bi-plus-square-fill ms-auto"></span>
</td>
</tr>
</table>

{% endblock %}

0 comments on commit 48b0784

Please sign in to comment.