{% extends "base.html" %} {% block title %}Conversations{% endblock %} {% block content %}
Call logs
{% for msg in messages %} {% empty %} {% endfor %}
Lead Phone No. Lead Name Lead Email Call Status call Started Call Ended Lead Status Actions
{{ msg.phone_number }} {{msg.lead_name}} {{msg.lead_email}} {% if msg.call_duration_seconds %} {{ msg.call_duration_seconds }} Sec. {% else %} N/A {% endif %} {% if msg.call_started_at %} {{ msg.call_started_at|date:"d-m-Y H:i A" }} {% else %} N/A {% endif %} {% if msg.call_ended_at %} {{ msg.call_ended_at|date:"d-m-Y H:i A" }} {% else %} N/A {% endif %} {{ msg.determined_status|default:"N/A" }} 👁
No messages found.
{% endblock %}