NDOJ/templates/chat/message_list.html
2023-05-20 08:54:17 +09:00

13 lines
No EOL
498 B
HTML
Executable file

<div class="has_next" style="display: none;" value="{{1 if has_next else 0}}"></div>
{% if object_list %}
<div style="display: none" id="num_pages">{{num_pages}}</div>
{% for message in object_list | reverse%}
{% include "chat/message.html" %}
{% endfor %}
{% else %}
<center id="empty_msg">{{_('You are connect now. Say something to start the conversation.')}}</center>
{% endif %}
{% if REQUIRE_JAX %}
{% include "mathjax-load.html" %}
{% endif %}
{% include "comments/math.html" %}