{% extends "admin/base.html" %} {% block title %}Usage for {{ user.username }}{% endblock %} {% block header_title %}Usage Statistics for {{ user.username }}{% endblock %} {% block content %}
← Back to User Details

Requests per Day (Last 30 Days)

{% if daily_data %}{% else %}

No request data available.

{% endif %}

Peak Hours (UTC)

{% if hourly_data and hourly_data | sum > 0 %}{% else %}

No hourly usage data.

{% endif %}

Server Load

{% if server_data and server_data | sum > 0 %}{% else %}

No server load data.

{% endif %}

Model Usage

{% if model_data %}{% else %}

No model-specific usage data.

{% endif %}
{% endblock %}