{% extends 'ndr_core/admin_views/base.html' %} {% load render_table from django_tables2 %} {% load crispy_forms_tags %} {% load ndr_utils %} {% load bootstrap4 %} {% block content %}

View Statistics

Options

Settings
The Statistics Option is {% if statistics_enabled %}enabled{% else %}disabled{% endif %}.
{% if statistics_enabled %}
Summary

Every time a user searches for something, the search term is logged.

Searches today
{{ search_summary.today }}
Searches this week
{{ search_summary.this_week }}
Searches this month
{{ search_summary.this_month }}
Searches this year
{{ search_summary.this_year }}
Total searches
{{ search_summary.total }}
{% else %}
Enable Statistics
No information is logged, when a user performs a search. {% endif %}
Searches
{% bootstrap_form filter.form layout='inline' %} {% bootstrap_button 'Filter' button_class="btn-outline-primary" %}
{% render_table table %}
{% endblock %}