{% if chat.id != 1 %}
{{chat.name}}
{{chat.name}}
{% if v.id == chat.owner_id %}
{% else %}
{% endif %}
{% endif %}
{{macros.chat_group_template()}}
{{macros.chat_line_template()}}
{{macros.chat_window(vlink)}}
{% if chat.id == 1 %}
{% if SITE_NAME == 'WPD' %}
Chat Rules
- Follow the rules mentioned on the sidebar.
- Do not try to crash the chatroom with malicious code (CSS).
- Do not send porn in chat.
- Do not spam.
{% endif %}
Users Online ()
{% else %}
Members ({{sorted_memberships|length}})
{% for membership in sorted_memberships %}
{% set user = membership.user %}
{% set patron = '' %}
{% if user.patron %}
{% set patron = patron + 'class="patron chat-patron" style="background-color:#' ~ user.name_color ~ '"' %}
{% endif %}
{% if user.pride_username(None) %}
{% set patron = patron + ' pride_username' %}
{% endif %}
{{user.username}}
{% if user.id == chat.owner_id %}
{% endif %}
{% endfor %}
{% endif %}