NDOJ/templates/chat/message_list.html

11 lines
396 B
HTML
Raw Normal View History

2023-02-18 21:12:33 +00:00
<div class="has_next" style="display: none;" value="{{1 if has_next else 0}}"></div>
2021-11-21 04:23:03 +00:00
{% if object_list %}
2023-01-27 23:11:10 +00:00
<div style="display: none" id="num_pages">{{num_pages}}</div>
{% for message in object_list | reverse%}
2021-06-19 03:26:43 +00:00
{% include "chat/message.html" %}
2023-01-27 23:11:10 +00:00
{% endfor %}
2021-11-21 04:23:03 +00:00
{% else %}
2023-01-27 23:11:10 +00:00
<center id="empty_msg">{{_('You are connect now. Say something to start the conversation.')}}</center>
{% endif %}