{% extends "base.html" %} {% block title %}Личный кабинет{% endblock %} {% block content %}

Всего анализов

{{ total_reports }}

Преобладающая эмоция

{{ emotion_map.get(most_common_emotion, most_common_emotion) }}

История анализов

{% if reports %}
{% set page_size = 6 %} {% set current_page = request.args.get('page', default='1') | int %} {% set start_index = (current_page - 1) * page_size %} {% set end_index = [start_index + page_size, reports|length] | min %} {% for report in reports[start_index:end_index] %}
{{ report['created_at'] if report['created_at'] is string else report['created_at'].strftime('%d.%m.%Y %H:%M') }} {{ emotion_map.get(report['emotion'], report['emotion']) }}

{{ report['content'][:200] }}{% if report['content']|length > 200 %}...{% endif %}

{% endfor %}
{% if reports|length > page_size %} {% endif %} {% else %}

У вас пока нет анализов

Начните использовать систему на главной странице

Перейти к анализу
{% endif %}

Анализ Telegram чатов

Экспортируйте чат через Telegram Desktop (JSON format)

Изменение эмоционального фона

Автоматический анализ

    Распределение эмоций

    Статистика по эмоциям

    {% endblock %}