forked from MarseyWorld/MarseyWorld
21 lines
370 B
HTML
21 lines
370 B
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Logged Out Users{% endblock %}
|
|
{% block content %}
|
|
<div class="overflow-x-auto">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Details</th>
|
|
</tr>
|
|
</thead>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{loop.index}}</td>
|
|
<td>{{user}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|