adminpanel layout fix
This commit is contained in:
parent
1bc7085e68
commit
429b5003d5
|
@ -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 ? '⚓' : '' }}</td>
|
<td>{{ session.kmsi ? '⚓' : '' }}</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)
|
|
@ -15,4 +15,5 @@
|
||||||
@endif
|
@endif
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@include(snippets/navbar_admin)
|
@include(snippets/navbar_admin)
|
||||||
|
<div id="main">
|
Loading…
Reference in New Issue
Block a user