Merge remote-tracking branch 'origin/dev'

This commit is contained in:
Flummi 2022-05-14 19:23:02 +02:00
commit ac3647aa7f
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,6 @@
@include(snippets/header_admin) @include(snippets/header_admin)
<table style="width: 100%;"> <table class="table" style="width: 100%">
<thead>
<tr> <tr>
<td></td> <td></td>
<td>ID</td> <td>ID</td>
@ -10,6 +11,8 @@
<td>last_used</td> <td>last_used</td>
<td>last_action</td> <td>last_action</td>
</tr> </tr>
</thead>
<tbody>
@each(sessions as session) @each(sessions as session)
<tr> <tr>
<td>{{ session.kmsi ? '&#9875;' : '' }}</td> <td>{{ session.kmsi ? '&#9875;' : '' }}</td>
@ -22,5 +25,6 @@
<td>{{ session.last_action }}</td> <td>{{ session.last_action }}</td>
</tr> </tr>
@endeach @endeach
</tbody>
</table> </table>
@include(snippets/footer) @include(snippets/footer)

View File

@ -16,3 +16,4 @@
</head> </head>
<body> <body>
@include(snippets/navbar_admin) @include(snippets/navbar_admin)
<div id="main">