{% extends "dashboard/base.html" %} {% block title %}Calls - Cyborg Dashboard{% endblock %} {% block content %}

Phone Calls

Call history with transcript and audio recording

TOTAL CALLS
{{ total_calls }}
AVG DURATION
{{ avg_duration }}s
RECORDED
{{ recorded_count }}
{% for call in calls %}
{% if call.direction == 'outbound' %}↗{% else %}↙{% endif %}
{{ call.phone_number or "Unknown" }} {{ call.status }}
{{ call.started_at|relative_time }} · {{ call.exchange_count }} exchange{{ "s" if call.exchange_count != 1 else "" }} {% if call.duration_seconds %} · {{ "%.0f"|format(call.duration_seconds) }}s {% endif %}
{% if call.recording_path %} {% endif %}
{% endfor %} {% if not calls %}

No calls yet

Make an outbound call to see it logged here

{% endif %}
{% endblock %}