{% extends 'mobile/base.html' %} {% block title %}Chat | App{% endblock %} {% block content %}
Suporte
Chat da operação
Fala direto com o sistema web — Lia com todos os dados
🤖
{% if conversations %}
{% for conv in conversations %} {{ conv.title|slice:":1" }} {{ conv.title|truncatechars:16 }} {% endfor %}
{% endif %} {% if conversation %}
{{ conversation.title|slice:":1" }}
{{ conversation.title }}
{{ conversation.context|default:"Suporte" }} · Lia online
📞 Ligar
{% for msg in conversation.messages.all %}
{% if msg.author.username == 'bot' %}L Lia · agora{% else %}{{ msg.author.username|slice:":1"|upper }} {{ msg.author.username }}{% endif %}
{{ msg.text }}
{% if msg.author.username == 'bot' and 'Escolha um número' in msg.text %}
{% endif %}
{{ msg.created_at|date:'H:i' }}
{% empty %}
💬
Nenhuma mensagem
Envie um oi para a Lia começar!
{% endfor %}
{% csrf_token %}
{% else %}
💬
Nenhuma conversa
O admin inicia conversas no web.
Enquanto isso, fale com a Lia!
{% endif %}
💬 Mesmo chat do web em /chat/Lia com todos os dados + humano quando precisar
{% endblock %}