{% if view == 'profile' %}
Profile
| First Name | {{ admin.firstName }} |
| Email | {{ admin.email }} |
| Phone | {{ admin.phoneNumber }} |
| Address | {{ admin.address }} |
{% elif view == 'conversations' %}
Conversations
| LeadPhone | LeadName | LeadEmail | CallStatus | Call ended |
{% for msg in messages %}
| {{ msg.phone_number }} |
{{ msg.call_started_at }} |
{{ msg.call_duration_seconds }} |
{{ msg.client_status }} |
{{msg.lead_name}} |
{{msg.lead_email}} |
{% empty %}
| No messages found. |
{% endfor %}
{% elif view == 'summary' %}
Call Summary
| Phone | Conversations | Call Summary | Started | Status |
{% for msg in messages %}
| {{ msg.phone_number }} |
{{ msg.call_transcript }} |
{{ msg.call_summary }} |
{{ msg.call_started_at }} |
{{ msg.call_status }} |
{% empty %}
| No summary found. |
{% endfor %}
{% endif %}
{% endblock %}