{% include 'nav_bar.html' %}
{% include 'sidebars/sidebar_objects.html' %}
{% with meta=chat %} {% include 'chats_explorer/card_chat.html' %} {% endwith %} {% if chat['subchannels'] %}

Sub-Channels:

{% for meta in chat["subchannels"] %} {% endfor %}
Icon Name ID Created at First Seen Last Seen
{{ meta['id'] }} {{ meta['name'] }} {% if meta['translation_name'] %}
{{ meta['translation_name'] }}
{% endif %}
{{ meta['id'] }} {{ meta['created_at'] }} {% if meta['first_seen'] %} {{ meta['first_seen'][0:4] }}-{{ meta['first_seen'][4:6] }}-{{ meta['first_seen'][6:8] }} {% endif %} {% if meta['last_seen'] %} {{ meta['last_seen'][0:4] }}-{{ meta['last_seen'][4:6] }}-{{ meta['last_seen'][6:8] }} {% endif %} {{ meta['nb_messages'] }}
{% endif %}
All Messages:
{% if not chat['subchannels'] %}
This week:
{% endif %} {% with translate_url=url_for('chats_explorer.chats_explorer_chat', subtype=chat['subtype']), obj_id=chat['id'], pagination=chat['pagination'] %} {% include 'chats_explorer/block_translation.html' %} {% endwith %} {% if chat['messages'] %} {% include 'objects/image/block_blur_img_slider.html' %} {% with obj_subtype=chat['subtype'], obj_id=chat['id'], url_endpoint=url_for("chats_explorer.chats_explorer_chat"), nb=chat['pagination']['nb'] %} {% set date_from=chat['first_seen'] %} {% set date_to=chat['last_seen'] %} {% include 'block_obj_time_search.html' %} {% endwith %} {% with endpoint_url=url_for('chats_explorer.chats_explorer_chat', subtype=chat['subtype']), pagination=chat['pagination'] %} {% set endpoint_url = endpoint_url + "&id=" + chat['id'] + "&nb=" + chat['pagination']['nb'] | string %} {% if translation_target %} {% set endpoint_url = endpoint_url + "&target=" + translation_target %} {% endif %} {% include 'chats_explorer/pagination.html' %} {% endwith %}
{% for date in chat['messages'] %}

{{ date }}

{% for mess in chat['messages'][date] %} {% with message=mess %} {% include 'chats_explorer/block_message.html' %} {% endwith %} {% endfor %}
{% endfor %}
{% with endpoint_url=url_for('chats_explorer.chats_explorer_chat', subtype=chat['subtype']), pagination=chat['pagination'] %} {% set endpoint_url = endpoint_url + "&id=" + chat['id'] + "&nb=" + chat['pagination']['nb'] | string %} {% if translation_target %} {% set endpoint_url = endpoint_url + "&target=" + translation_target %} {% endif %} {% include 'chats_explorer/pagination.html' %} {% endwith %} {% endif %}