{% extends "django_prometric/components/card.html" %} {% load i18n prometric_extras %} {% block body %} {% if security.total %}
{% translate "Mitigated requests" %}
{{ security.total|num }}
{% translate "challenged or blocked by the firewall in this period" %}
{% if security.actions %}
{% translate "By action" %}
{% for item in security.actions %}
{{ item.label }} {{ item.value|num }}
{% endfor %}
{% endif %} {% if security.sources %}
{% translate "By defence" %}
{% for item in security.sources %}
{{ item.label }} {{ item.value|num }}
{% endfor %}
{% endif %} {% if security.paths %}
{% translate "Most-targeted paths" %}
{% for item in security.paths %} {% endfor %}
{{ item.label }} {{ item.value|num }}
{% endif %} {% else %}

{% translate "Nothing was blocked or challenged in this period." %}

{% endif %} {% endblock %}