{% extends 'insight/base.html' %} {% load static %} {% block content %} ← Back to vistor {{ visitor.user|default:"Anonymous" }} Session started: {{ visitor.start_time|date:'M j, Y' }} at {{ visitor.start_time|date:'g:i A' }} Page views: {{ visitor.page_views.count }} {% include 'insight/partials/date_filter_form.html' %} URL Method Visitor Timestamp {% for page_view in page_views %} {{ page_view.url }} {{ page_view.method }} {{ page_view.user|default:"-" }} {{ page_view.created_at|date:'M j, Y' }} at {{ page_view.created_at|date:'g:i A' }} {% endfor %} {% include 'insight/partials/pagination.html' with page=page_views %} {% endblock %}
Session started: {{ visitor.start_time|date:'M j, Y' }} at {{ visitor.start_time|date:'g:i A' }}
Page views: {{ visitor.page_views.count }}