15 lines
466 B
HTML
15 lines
466 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Chat razgovor — Gogo Telefon{% endblock %}
|
||
|
|
{% block nav %}{% include "dashboard/_nav.html" %}{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<p><a href="/dash/chats">← Svi razgovori</a></p>
|
||
|
|
<h1>Chat {{ chat.started_at.strftime('%d.%m.%Y. %H:%M') }}</h1>
|
||
|
|
<div class="card">
|
||
|
|
<div class="transcript">
|
||
|
|
{% for m in messages %}
|
||
|
|
<div class="t {{ m.role }}">{{ m.content }}</div>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|