NDOJ/templates/chat/message_list.html

11 lines
396 B
HTML
Raw Normal View History

2023-02-18 15:12:33 -06:00
<div class="has_next" style="display: none;" value="{{1 if has_next else 0}}"></div>
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>
{% endif %}