{% extends "ircpanel/base.html" %} {% block title %}Utilisateurs{% endblock %} {% block hero_icon %}{% endblock %} {% block eyebrow %}Réseau en direct{% endblock %} {% block heading %}Utilisateurs {{ total }}{% endblock %} {% block subtitle %}Sessions connectées vues depuis echo, en temps réel.{% endblock %} {% block content %}
{% for u in rows %} {{ u.nick }} {% if u.is_oper %}⚡ {% if u.operclass.is_empty() %}oper{% else %}{{ u.operclass }}{% endif %}{% endif %} {% if u.has_account %}{{ u.account }}{% endif %} {% if u.secure %}🔒 TLS{% endif %} {{ u.ident }}@{{ u.host }} {{ u.ip }} {% if u.server.is_empty() %}—{% else %}{{ u.server }}{% endif %} {% if u.modes.is_empty() %}—{% else %}+{{ u.modes }}{% endif %} {% endfor %} {% if rows.is_empty() %}
Aucun utilisateur en ligne.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}