2018-02-03 12:57:38 +01:00
|
|
|
<div class="message_area_padder message_list" id="main_div">
|
2018-04-27 15:48:55 +02:00
|
|
|
{% if is_web_public and message_list %}
|
|
|
|
<div class="message_table focused_table" id="zhome">
|
2018-02-03 12:57:38 +01:00
|
|
|
<span id="display_recipient">{{ stream }}-{{ topic }}</span>
|
2018-04-27 15:48:55 +02:00
|
|
|
{% for msg in message_list %}
|
|
|
|
{{ msg|safe }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% elif is_web_public %}
|
|
|
|
<p>
|
|
|
|
This topic does not exist.
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
This stream does not exist.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2018-02-03 12:57:38 +01:00
|
|
|
</div>
|