{% extends 'insight/base.html' %} {% load static %} {% block content %} ← Back to dashboard History {% 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 %}