{% extends "data_explorer/table_entries_base.html" %} {% block table_report %}
{{ report.most_visited_pages|plotly_figure }}
{{ report.unique_users_and_traffic|plotly_figure }}
{% endblock %} {% block table_headers %} {% table_header "id" min_width=50 %} {% table_header "user__last_name" "User" min_width=100 %} {% table_header "url_path" min_width=100 %} {% table_header "url_parameters " min_width=100 %} {% table_header "timestamp" min_width=100 %} {% endblock %} {% block table_rows %} {% foreign_key_link entry %} {{ entry.user.first_name }} {{ entry.user.last_name }} {{ entry.url_path }} {{ entry.url_parameters }} {{ entry.timestamp|date:"Y-m-d" }} {% endblock %}