{% extends "xeolux_securitykit/base.html" %} {% block title %}Bans temporaires{% endblock %} {% block content %} {% if bans %}
{% for ban in bans %} {% endfor %}
IP Raison Détails Créé le Expire le Statut Action
{{ ban.ip_address }} {{ ban.get_reason_display }} {{ ban.details|default:"—" }} {{ ban.created_at|date:"d/m/Y H:i" }} {{ ban.expires_at|date:"d/m/Y H:i" }} {% if ban.lifted %} Levé {% elif ban.expires_at < now %} Expiré {% else %} Actif {% endif %} {% if not ban.lifted and ban.expires_at >= now %}
{% csrf_token %}
{% else %}—{% endif %}
{% else %}

Aucun ban temporaire enregistré.

{% endif %} {% endblock %}