{%- extends 'root.html' -%} {% block pagetitle -%}{{chat.name}}{%- endblock %} {% block pagetype %}chat{% endblock %} {% block body_attributes %}class="has_header"{% endblock %} {% block body %} {% include "header.html" %} {% include "modals/emoji.html" %} {% include "modals/gif.html" %} {% set vlink = '
{% 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
{% 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 %} Owner {% endif %}
  • {% endfor %}
    {% endif %}
    {% if not session.get("GLOBAL") %} {% endif %} {% endblock %}