2024-02-06 01:19:38 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block pagetitle %}{{ip}} Users{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h5 class="pt-4 pl-2 pb-3">Users who visited from {{ip}}</h5>
|
|
|
|
<div class="overflow-x-auto">
|
2024-02-12 14:18:13 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
2024-02-06 01:19:38 +00:00
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>First Used</th>
|
|
|
|
<th>Last Used</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for ip_log in ip_logs %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{% with user=ip_log.user %}
|
|
|
|
{% include "user_in_table.html" %}
|
|
|
|
{% endwith %}
|
|
|
|
</td>
|
|
|
|
<td data-time="{{ip_log.created_utc}}"></td>
|
|
|
|
<td data-time="{{ip_log.last_used}}"></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|