{% extends 'core/base/base.html' %} {% load form_tags %} {% load static %} {% load jalali_tags %} {% load jalali_extras %} {% block header %} {% endblock header %} {% block content %}

{{request.user}}

{{request.user.get_role_display}}

{% for chat in chats %} <{% if this_chat.id == chat.id %}div {% else %}a {% endif %} type="button" href="{{chat.admin_url}}" class="flex w-full items-center justify-between rounded-md p-2 {% if this_chat.id == chat.id %} bg-gray-100 text-primary dark:bg-[#050b14] dark:text-primary {% endif %} hover:bg-gray-100 hover:text-primary dark:hover:bg-[#050b14] dark:hover:text-primary" x-show="'{{ chat.other_user.name|default:chat.other_user.username }} {{ chat.last_message.content|default:"هنوز پیامی ارسال نشده" }}'.toLowerCase().includes(search.toLowerCase())">
{% if chat.other_user.profile.is_active %}
{% endif %}

{{chat.other_user.name}}

{{ chat.last_message.display_content|slice:25|default:"هنوز پیامی ارسال نشده" }}

{% if chat.last_message %}

{{ chat.last_message.created_at|to_jalali:'%H:%m %y/%m/%d' }}

{% else %}

{{ chat.updated_at|to_jalali:'%H:%m %y/%m/%d' }}

{% endif %}
{% endfor %}
{% if this_chat.other_user.profile.is_active %}
{% endif %}

{{ this_chat.other_user}}

آخرین بازدید در {{ this_chat.other_user.last_seen|to_jalali:'%H:%m:%S %Y/%m/%d'}}

{% for day, messages in grouped_messages.items %}

{{ day }}

{% for message in messages %}
{% if message.reply_to %}
پاسخ به: {{ message.reply_to.text|truncatechars:50 }}
{% endif %}

{{ message.text }}

{% if message.file %} {% with message.file.url as file_url %} {% with file_url|lower as file_lower %} {% if ".jpg" in file_lower or ".jpeg" in file_lower or ".png" in file_lower or ".gif" in file_lower or ".webp" in file_lower %}
تصویر پیوست
{% elif ".mp4" in file_lower or ".webm" in file_lower or ".ogg" in file_lower %}
{% else %} {% endif %} {% endwith %} {% endwith %} {% endif %} {% if message.voice %}
{% endif %}
{{ message.created_at|date:"H:i" }}
{% endfor %} {% endfor %}
{% csrf_token %} {% comment %} {% endcomment %}
{% endblock %} {% block js %} {% endblock js %}