{% 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 %}
PhoneCall StartedDurationCall StatusClient Status
{{ msg.phone_number }} {{ msg.call_started_at }} {{ msg.call_duration_seconds }} {{ msg.call_status }} {{ msg.client_status }}
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 %}