{% extends "showcase/cabinet/base_cabinet.html" %} {% block title %}Conversations{% endblock %} {% block sidebar_title %} Conversations {% endblock %} {% block sidebar_nav %}
  • FOLDERS
  • {% for f in folders %}
  • {{ f.label }} {{ f.count }}
  • {% endfor %}

  • TOPIC
  • All Topics
  • {% for t in topics %}
  • {{ t.label }}
  • {% endfor %} {% endblock %} {% block cabinet_content %}
    {# ── Conversation list ── #}
    {% if active_folder == 'inbox' %}Inbox{% elif active_folder == 'processed' %}Processed{% else %}All Conversations{% endif %} ({{ total }})
    {% for conv in conversations %}
    {{ conv.initials }}
    {{ conv.client_name }} {{ conv.date }}
    {% if conv.status == 'open' %}Open{% else %}Processed{% endif %} {{ conv.topic }}

    {{ conv.preview }}

    {% if conv.client_whatsapp %} {% endif %}
    {% empty %}
    No conversations
    {% endfor %}
    {# ── Detail panel ── #}
    {% include "showcase/cabinet/conversations/_empty.html" %}
    {% endblock %}