CheddahBot/cheddahbot/templates/partials/chat_sidebar.html

12 lines
308 B
HTML

{% if conversations %}
{% for conv in conversations %}
<button class="conv-btn"
onclick="loadConversation('{{ conv.id }}')"
title="{{ conv.title or 'New Chat' }}">
{{ conv.title or 'New Chat' }}
</button>
{% endfor %}
{% else %}
<p class="text-muted">No conversations yet</p>
{% endif %}