{% extends "base.html" %} {% block title %}Recent Changes - Network Management{% endblock %} {% block content %}
{{ stats.total_changes }}
Total Changes
{{ stats.devices_affected }}
Devices Affected
{{ stats.critical_count }}
Critical
{{ stats.moderate_count }}
Moderate
{% if site_stats %}

Changes by Site

{% endif %}
Clear

Changes ({{ changes|length }})

{% if changes %}
{% for change in changes %} {% endfor %}
Detected Device Site Type Changes Severity Actions
{{ change.detected_at[5:7] }}/{{ change.detected_at[8:10] }}/{{ change.detected_at[2:4] }}
{{ change.detected_at[11:16] }}
{{ change.device_name }} {{ change.site_name or 'Unknown' }} {{ change.capture_type }} +{{ change.lines_added }} / -{{ change.lines_removed }} {{ change.severity }}
{% else %}

No Changes Detected

No configuration or hardware changes in the selected time range

{% endif %}
{% endblock %}