feature: visitors counter shows now user browser, and also if its bot

This commit is contained in:
slawkens
2023-02-17 18:41:25 +01:00
parent 6785ecad1d
commit a98cb66c53
7 changed files with 49 additions and 12 deletions

View File

@@ -9,6 +9,7 @@
<th>IP</th>
<th>Last visit</th>
<th>Page</th>
<th>Browser</th>
</tr>
</thead>
<tbody>
@@ -17,6 +18,7 @@
<td>{{ visitor.ip }}</td>
<td>{{ visitor.lastvisit|date("H:i:s") }}</td>
<td><a href="{{ visitor.page }}">{{ visitor.page|slice(0, 50) }}</a></td>
<td>{{ visitor.browser }}</td>
</tr>
{% endfor %}
</tbody>