{% extends "ircpanel/base.html" %} {% block title %}{{ nick }}{% endblock %} {% block pagehead %}{% endblock %} {% block content %} Utilisateurs {% if !found %}
Utilisateur {{ nick }} introuvable ou déconnecté.
{% else %}
{{ initial }}
{{ nick }}
{% if is_oper %}⚡ {% if operclass.is_empty() %}oper{% else %}{{ operclass }}{% endif %}{% endif %} {% if registered %}✓ {{ account }}{% endif %} {% if secure %}🔒 TLS{% endif %} {% if !registered %}invité{% endif %}
{{ ident }}@{{ host }}
{% if !gecos.is_empty() %}
{{ gecos }}
{% endif %}
🌐{% if ip.is_empty() %}—{% else %}{{ ip }}{% endif %}
🖧{% if server.is_empty() %}—{% else %}{{ server }}{% endif %}
{% if modes.is_empty() %}—{% else %}+{{ modes }}{% endif %}
📺{{ channels.len() }} salon(s)
Salons
{% for ch in channels %} {{ ch.prefix }}{{ ch.name }} {% endfor %} {% if channels.is_empty() %}
Aucun salon.
{% endif %}
Compte
{% if registered %}
Compte{{ account }}
E-mail{% if email.is_empty() %}—{% else %}{{ email }}{% endif %}
Vérifié{% if verified %}✓ oui{% else %}✗ non{% endif %}
Inscrit{{ joined }}
{% else %}
Cet utilisateur n'est pas identifié à un compte.
{% endif %}
{% endif %} {% endblock %}