NDOJ/templates/chat/message_list.html

12 lines
411 B
HTML
Raw Normal View History

2021-11-21 04:23:03 +00:00
{% if object_list %}
<div style="display: none" id="num_pages">{{num_pages}}</div>
2021-06-19 03:26:43 +00:00
{% for message in object_list | reverse%}
{% include "chat/message.html" %}
{% endfor %}
2021-11-21 04:23:03 +00:00
{% else %}
<center id="empty_msg">{{_('You are connect now. Say something to start the conversation.')}}</center>
{% endif %}
2021-06-19 03:26:43 +00:00
{% if REQUIRE_JAX %}
{% include "mathjax-load.html" %}
{% endif %}
2021-11-21 04:23:03 +00:00
{% include "comments/math.html" %}