{% extends 'base.html' %} {% load static %} {% block title %}Security Compliance Report{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| User | IP Address | Attempts | Risk Level |
|---|---|---|---|
| {{ attempt.user__first_name }} {{ attempt.user__last_name }} | {{ attempt.ip_address|default:"-" }} | {{ attempt.count }} | {% if attempt.count > 10 %} High {% elif attempt.count > 5 %} Medium {% else %} Low {% endif %} |
| No failed access attempts | |||
No permission escalations detected
{% endfor %}No suspicious IP addresses detected
{% endfor %}No data exports in this period
{% endfor %}{{ alert.description|truncatechars:150 }}
{% if alert.user %} User: {{ alert.user.get_full_name }} {% endif %} {% if alert.ip_address %} | IP: {{ alert.ip_address }} {% endif %}All security alerts have been resolved.