-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a html containing the table information for the mpsk clients #498
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} | ||
|