{% extends "../base.html" %} {% block title %}{{ _("Conferences") }}{% end block %} {% block content %}

{{ _("Conferences") }}

{% if conferences %} {% for c in conferences %}
{{ _("Conference Room %s") % c.number }}

{{ _("This conference room has one participant", "This conference room has %(num)s participants", len(c)) % { "num" : len(c) } }}

    {% for chan in c.channels %}
  • {% if chan.caller %} {{ chan.caller }} {% else %} {{ chan.caller_name }} {% end %} ({{ format_phone_number(chan.caller_number) }})
    {{ format_time(chan.duration) }}
    {% if chan.is_secure() %} {% end %} {{ chan.codec }}
  • {% end %}
{% end %} {% else %}

{{ _("There are currently no conferences") }}

{% end %}
{% end block %}