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