{% extends 'insight/base.html' %} {% load static %} {% block content %} ← Back to vistor

{{ visitor.user|default:"Anonymous" }}

Session started:

Page views: {{ visitor.page_views.count }}

{% include 'insight/partials/date_filter_form.html' %}
{% for page_view in page_views %} {% endfor %}
URL Method Visitor Timestamp
{{ page_view.url }} {{ page_view.method }} {{ page_view.user|default:"-" }}
{% include 'insight/partials/pagination.html' with page=page_views %}
{% endblock %}