{% extends "django_security_monitor/base.html" %} {% block title %}Visitors{% endblock %} {% block topbar_title %}👥 Visitor Tracking{% endblock %} {% block content %}
| IP | User | Visits | Location | First Visit | Last Visit | User Agent |
|---|---|---|---|---|---|---|
| {{ v.ip_address }} | {{ v.user.username|default:"—" }} | {{ v.visit_count }} | {% if v.location %} {{ v.location.city|default:"" }}{% if v.location.city %}, {% endif %}{{ v.location.country_code|default:"" }} {% else %}—{% endif %} | {{ v.first_visit|date:"M d, Y" }} | {{ v.last_visit|date:"M d H:i" }} | |
| No visitors yet | ||||||