{% extends 'settings.html' %} {% load i18n %} {% block settings %}

{% trans "IP Restriction" %}

{% if allowed_ips.is_enabled %} {% if allowed_ips.additional_data.allowed_ips %}
{% trans "Sl.No" %}
{% trans "IPs" %}
{% trans "Actions" %}
{% for ip in allowed_ips.additional_data.allowed_ips %}
{{forloop.counter}}
{{ip}}
{% csrf_token %}
{% endfor %}
{% endif %} {% endif %}
{% endblock %}