{% extends "base.html" %} {% block title %}{{ _("Call") }}{% end block %} {% block main %}

{% if call.direction == "inbound" %} {{ _("Call to") }} {% if call.callee %} {{ call.callee }} {% else %} {{ format_phone_number(call.callee_number) }} {% end %} {% elif call.direction == "outbound" %} {{ _("Call from") }} {% if call.caller %} {{ call.caller }} {% else %} {{ format_phone_number(call.caller_number) }} {% end %} {% end %}

{{ locale.format_date(call.time_answered or call.time_start) }}

{% if call.duration %} {{ format_time(call.duration) }} {% else %} {{ _("Not Answered") }} {% end %}

{{ _("Media Information") }}
{% for c in (call, call.bleg) %} {% if c %}

{% if c == call %} {{ _("Your Leg") }} {% else %} {{ _("Other Leg") }} {% end %}

{% module MOS(c) %}

{{ _("Codec") }}
{{ c.codec or _("N/A") }}
{{ _("Data Transferred") }}
{{ format_size(c.size) }}
{{ _("User Agent") }}
{{ c.user_agent or _("N/A") }}
{% end %} {% end %}
{% end %}