{% extends 'base.html' %} {% block title %}Сообщения{% endblock %} {% block head %} {% endblock %} {% block content %}
Контакты
{% for c in contacts %}
{{ c.username }}
{% if c.unread_count > 0 %} {{ c.unread_count }} {% endif %}
{% endfor %} {% if contacts|length == 0 %}

Нет контактов

Добавить контакты
{% endif %}
{% if contact %}
Чат с {{ contact.username }}
{% if messages|length > 0 %} {% for message in messages %}
{{ message.content }} {% if message.attachment_id %}
{% set attachment = get_file_by_id(message.attachment_id) %} {% if attachment %}
{{ attachment.original_filename }} {{ format_size(attachment.size) }}
{% if attachment.file_type == 'image' %} {% elif attachment.file_type == 'video' %}
{% elif attachment.file_type == 'audio' %}
{% endif %} {% endif %}
{% endif %}
{{ message.created_at }} {% if message.sender_id == user_id %} {% if message.is_read %} {% else %} {% endif %} {% endif %}
{% endfor %} {% else %}

Нет сообщений. Начните общение!

{% endif %}
{% else %}
Выберите контакт для начала общения
Управление контактами
{% endif %}
{% endblock %}