{% extends "ircpanel/base.html" %} {% block title %}Salons{% endblock %} {% block hero_icon %}{% endblock %} {% block eyebrow %}Réseau en direct{% endblock %} {% block heading %}Salons {{ total }}{% endblock %} {% block subtitle %}Salons actifs sur le réseau, avec leur membres et modes.{% endblock %} {% block content %}
{% for c in rows %} # {{ c.name }} {% if c.registered %}enregistré{% endif %} {% if c.secret %}+s{% endif %} {% if c.private %}+p{% endif %} {% if c.inviteonly %}+i{% endif %} {% if c.keyed %}🔑{% endif %} {% if c.moderated %}+m{% endif %} {% if c.topic.is_empty() %}Aucun sujet{% else %}{{ c.topic }}{% endif %} {% if c.modes.is_empty() %}—{% else %}+{{ c.modes }}{% endif %} {{ c.users }} {% endfor %} {% if rows.is_empty() %}
Aucun salon actif.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}