{% extends "base.html" %} {% block content %}
{% if view == 'profile' %}
Profile
First Name{{ admin.firstName }}
Email{{ admin.email }}
Phone{{ admin.phoneNumber }}
Address{{ admin.address }}
{% elif view == 'conversations' %}
Conversations
{% for msg in messages %} {% empty %} {% endfor %}
LeadPhoneLeadNameLeadEmailCallStatusCall ended
{{ msg.phone_number }} {{ msg.call_started_at }} {{ msg.call_duration_seconds }} {{ msg.client_status }} {{msg.lead_name}} {{msg.lead_email}}
No messages found.
{% elif view == 'summary' %}
Call Summary
{% for msg in messages %} {% empty %} {% endfor %}
PhoneConversationsCall SummaryStartedStatus
{{ msg.phone_number }} {{ msg.call_transcript }} {{ msg.call_summary }} {{ msg.call_started_at }} {{ msg.call_status }}
No summary found.
{% endif %}
{% endblock %}