{% extends 'settings/layout.html' %} {% load i18n %} {% load humanize %} {% block title %}{% trans "IP Address Blocklist" %}{% endblock %} {% block header %}{% trans "IP Address Blocklist" %}{% endblock %} {% block edit-button %} {% trans "Add IP address" as button_text %} {% include 'snippets/toggle/open_button.html' with controls_text="add_address" icon_with_text="plus" text=button_text focus="add_address_header" %} {% endblock %} {% block panel %} {% include 'settings/ip_blocklist/ip_address_form.html' with controls_text="add_address" class="block" %}

{% trans "Any traffic from this IP address will get a 404 response when trying to access any part of the application." %}

{% for address in addresses %} {% endfor %} {% if not addresses.exists %} {% endif %}
{% trans "Address" %} {% trans "Options" %}
{{ address.address }}
{% csrf_token %} {% trans "Delete" as button_text %}
{% trans "No IP addresses currently blocked" %}
{% endblock %}