{% extends "ircpanel/base.html" %}
{% block title %}IP WHOIS{% endblock %}
{% block hero_icon %}{% endblock %}
{% block eyebrow %}Système{% endblock %}
{% block heading %}IP WHOIS{% endblock %}
{% block subtitle %}Qui est connecté depuis une IP, et quels bans la concernent.{% endblock %}
{% block content %}
{% if q.is_empty() %}
Saisis une adresse IP pour voir les sessions et bans associés.
{% else %}
Sessions sur
{{ ip }} {{ users.len() }}
| Pseudo | Hôte | Compte | Serveur |
{% for u in users %}
| {{ u.nick }}{% if u.is_oper %} oper{% endif %} |
{{ u.ident }}@{{ u.host }} |
{% if u.account.is_empty() %}—{% else %}{{ u.account }}{% endif %} |
{% if u.server.is_empty() %}—{% else %}{{ u.server }}{% endif %} |
{% endfor %}
{% if users.is_empty() %}
Aucune session en ligne sur cette IP.
{% endif %}
Bans concernant cette IP
{{ bans.len() }}
| Type | Masque | Motif | Expire |
{% for b in bans %}
| {{ b.kind }} |
{{ b.mask }} |
{% if b.reason.is_empty() %}—{% else %}{{ b.reason }}{% endif %} |
{{ b.expires }} |
{% endfor %}
{% if bans.is_empty() %}
Aucun ban ne correspond à cette IP.
{% endif %}
{% endif %}
{% endblock %}