{% extends "base.html" %} {% block title %}Device Limit Monitoring{% endblock %} {% block content %}

Device Limit Monitoring

Total Devices

{{ stats.total_devices }}

of {{ stats.total_device_limit }} allowed
Overall Usage

{{ stats.usage_percent }}%

Active (24h)

{{ stats.active_24h }}

devices seen today
Active (7d)

{{ stats.active_7d }}

devices seen this week
{% if warnings %}
Device Limit Warnings
{% for warning in warnings %} {% endfor %}
License Key Customer Devices Limit Usage Status Actions
{{ warning.license_key }} {{ warning.customer_name }}
{{ warning.customer_email }}
{{ warning.device_count }} {{ warning.device_limit }}
{{ warning.usage_percent }}%
{% if warning.status == 'exceeded' %} Exceeded {% else %} Warning {% endif %} View Devices
{% else %}
All licenses are within their device limits.
{% endif %}
{% endblock %}