{% extends "admin/dbs/base.html" %} {% block dbs_content %}

DBS security

Policy

Level {{ policy.get_level_display }}, warn at {{ policy.warn_threshold }}, log out at {{ policy.logout_threshold }}, learning period {{ policy.learning_logins }} events.

Trusted networks: {{ policy.trusted_networks|default:"none" }}

Browser location: {% if geolocation %}{{ policy.collect_location|yesno:"in use,available but off" }}{% else %}disabled in settings{% endif %}

Change

Anomalies

{% if anomalies %} {% for event in anomalies %} {% endfor %}
WhenWhoScoreOutcomeWhy
{{ event.created_at|date:"Y-m-d H:i" }}{{ event.user }} {{ event.score }}{{ event.action_taken }} {% for reason in event.reasons %}{{ reason }}{% if not forloop.last %}; {% endif %}{% endfor %}
{% else %}

Nothing recorded.

{% endif %}

Audit

{% if audit %} {% for event in audit %} {% endfor %}
WhenWhoActionTargetOK
{{ event.created_at|date:"Y-m-d H:i" }}{{ event.actor }} {{ event.action }}{{ event.target_name }} {{ event.succeeded|yesno:"yes,no" }}
{% else %}

Nothing recorded.

{% endif %}
{% endblock %}