{% extends "xeolux_securitykit/base.html" %} {% block title %}Whitelist IP{% endblock %} {% block content %}
Entrées autorisées
{{ entries|length }}
{% for entry in entries %} {% empty %} {% endfor %}
IP / CIDRLabelPortéeStatut
{{ entry.ip_or_cidr }} {{ entry.label|default:"—" }} {% if entry.is_securitykit_access %} SecurityKit {% elif entry.route %} {{ entry.route }} {% else %} Globale {% endif %} {% if entry.enabled %}Actif{% else %}Inactif{% endif %}
{% csrf_token %}

Aucune entrée. Ajoutez une IP ci-contre.

Ajouter une IP
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}
    {% for e in field.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}