{% extends "xeolux_securitykit/base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
Annuler
{% if dry_run_result %}
Résultat de la simulation

Chemin : {{ dry_run_result.path }}

IP : {{ dry_run_result.simulated_ip }}

Verdict final : {{ dry_run_result.final_verdict }}

{% for check in dry_run_result.checks %} {% endfor %}
VérificationRésultat
{{ check.check }} {{ check.result }}
{% endif %} {% if profiles %}
Profils disponibles
{% for profile in profiles %} {% endfor %}
ProfilDescription
{{ profile.label }} {{ profile.description }}
{% csrf_token %}
{% endif %} {% endblock %}