{% extends "xeolux_securitykit/base.html" %} {% block title %}Whitelist IP{% endblock %} {% block content %}
{% for entry in entries %} {% empty %} {% endfor %}
IP / CIDRLabelRouteSecurityKitStatut
{{ entry.ip_or_cidr }} {{ entry.label|default:"—" }} {{ entry.route|default:"Globale" }} {% if entry.is_securitykit_access %}Oui{% else %}—{% 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.errors %}
    {% for e in field.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}