{% include 'nav_bar.html' %}
{% include 'sidebars/sidebar_objects.html' %}

{% if chat['username'] %}{{ chat["username"]["id"] }} {% else %} {{ chat['name'] }}{% endif %} :

{% if chat['icon'] %}
{{ chat['id'] }}
{% endif %}
  • Name ID Created at First Seen Last Seen NB Sub-Channels Participants
    {{ chat['name'] }} {{ chat['id'] }} {{ chat['created_at'] }} {% if chat['first_seen'] %} {{ chat['first_seen'][0:4] }}-{{ chat['first_seen'][4:6] }}-{{ chat['first_seen'][6:8] }} {% endif %} {% if chat['last_seen'] %} {{ chat['last_seen'][0:4] }}-{{ chat['last_seen'][4:6] }}-{{ chat['last_seen'][6:8] }} {% endif %} {{ chat['nb_subchannels'] }} {{ chat['nb_participants']}}
    {% if chat['info'] %}
  • {{ chat['info'] }}
  • {% endif %}
{% for tag in chat['tags_messages'] %} {{ tag }} {{ chat['tags_messages'][tag] }} {% endfor %} {% if chat['subchannels'] %}

Sub-Channels:

{% for meta in chat["subchannels"] %} {% endfor %}
Icon Name ID Created at First Seen Last Seen NB Messages
{{ meta['id'] }} {{ meta['name'] }} {{ 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 %}
{% if chat['messages'] %} {% include 'objects/image/block_blur_img_slider.html' %} {% with translate_url=url_for('chats_explorer.chats_explorer_chat', uuid=chat['subtype']), obj_id=chat['id'] %} {% include 'chats_explorer/block_translation.html' %} {% endwith %} {% 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', uuid=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', uuid=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 %}