{%- extends 'root.html' -%} {% block pagetitle -%} {%- if request.path == '/admin/chat' -%} Admin Chat {%- else -%} Chat {%- endif -%} {%- endblock %} {% block pagetype %}chat{% endblock %} {% block body %} {% include "header.html" %} {% include "modals/expanded_image.html" %} {% include "modals/emoji.html" %} {% set vlink = '' %}
0
{% macro chat_group_template(id, m) %}
{% if m %}{{m['username']}}{% endif %} {% if m %}{{m['time'] | timestamp}}{% else %}just now{% endif %} {% endmacro %} {% macro chat_line_template(id, m) %} {% endmacro %}
{{chat_group_template()}}
{{chat_line_template()}}
{% set messages_list = messages.items()|list %} {% for id, m in messages_list %} {% set same = loop.index > 1 and m['user_id'] == messages_list[loop.index-2][1]['user_id'] %} {% if not same %} {% if loop.index > 1 %}
{% endif %} {{chat_group_template(id, m)}} {% endif %} {{chat_line_template(id, m)}} {% endfor %}
Users Online
{% endblock %}