{% translate 'BFD Reports' %}
{% translate 'Brute Force Intrusion Detection' %}
{% translate 'This will show the last 100 Brute force attempt to this server. You can also use the command line utility bfdctl to manage the reports' %}
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{%elif message.tags == "info"%}
{{ message }}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}