Files
2026-05-13 22:43:29 +02:00

27 lines
945 B
Twig

{% extends "admin/blank.twig" %}
{% block content %}
<h1 class="text-2xl font-bold mb-6">Recent Access Logs</h1>
<table class="min-w-full bg-white">
<thead>
<tr>
<th class="py-2 px-4 border-b">Username</th>
<th class="py-2 px-4 border-b">Password</th>
<th class="py-2 px-4 border-b">IP</th>
<th class="py-2 px-4 border-b">User Agent</th>
<th class="py-2 px-4 border-b">Time</th>
</tr>
</thead>
<tbody>
{% for log in logs %}
<tr>
<td class="py-2 px-4 border-b">{{ log.username }}</td>
<td class="py-2 px-4 border-b">{{ log.password }}</td>
<td class="py-2 px-4 border-b">{{ log.remote_ip }}</td>
<td class="py-2 px-4 border-b">{{ log.user_agent }}</td>
<td class="py-2 px-4 border-b">{{ log.created_at }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}