{% extends "xeolux_securitykit/base.html" %} {% block title %}Importer une configuration{% endblock %} {% block content %}
Attention : L'import écrasera les routes, règles, whitelist et blacklist existantes.
{% 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 %}
Annuler
Format attendu

Fichier .json généré par la fonction Exporter de SecurityKit. Inclut les routes protégées, règles, whitelist IP, blacklist IP et clés API.

{% endblock %}