File size: 886 Bytes
9d7a35f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <title>Чат</title>
    <style>
        body { font-family: sans-serif; margin: 2em; }
        .note { margin-bottom: 1em; border-bottom: 1px solid #ddd; padding-bottom: 0.5em; }
        .source-user { color: green; }
        .source-llm { color: blue; }
    </style>
</head>
<body>
    <h2>📜 Сообщения</h2>

    {% for note in notes %}
        <div class="note">
            <div>
                <b class="source-{{ note.source }}">{{ note.source }}</b> @ {{ note.timestamp }}:
            </div>
            <div>{{ note.text }}</div>
        </div>
    {% endfor %}

    <form method="post">
        <textarea name="message" rows="4" cols="60" placeholder="Введите сообщение..."></textarea><br>
        <button type="submit">Отправить</button>
    </form>
</body>
</html>