{% include theme('row_general_data.html') %}
{% include theme('chart.html')%}
{{ _('Number') }}
|
{{ _('Position') }}
|
{{ _('Wait Time') }}
|
|
{% for caller in callers %}
{{ caller.Number }} |
{{ caller.position }} |
{{ caller.wait_time }} |
|
{% endfor %}
{{ _('Queue') }}
|
{{ _('Name') }}
|
{{ _('Interface') }}
|
{{ _('Calls') }}
|
{{ _('Paused Time') }}
|
{% for agent in agents %}
{% set status_class = '' %}
{% if agent.agent_status == 'InCall' %}
{% set status_class = 'row-green' %}
{% elif agent.agent_status == 'free' %}
{% set status_class = 'row-blue' %}
{% elif agent.agent_status == 'Unavailable' %}
{% set status_class = 'row-red' %}
{% elif agent.agent_status == 'Busy' %}
{% set status_class = 'row-yellow' %}
{% elif agent.agent_status == 'paused' %}
{% set status_class = 'row-pink' %}
{{ agent.agent_queue }} |
{{ agent.agent_name }} |
{{ agent.Interface }} |
{{ agent.calls_awnsered }} |
{{ agent.paused_time }} |
{% else %}
{% set status_class = 'row-red' %}
{% endif %}
{% endfor %}
]
{{ _('Queue') }}
|
{{ _('Name') }}
|
{{ _('Interface') }}
|
{{ _('Calls') }}
|
{{ _('Last call at') }}
|
{% for agent in agents %}
{% set status_class = '' %}
{% if agent.agent_status == 'InCall' %}
{% set status_class = 'row-green' %}
{% elif agent.agent_status == 'free' %}
{% set status_class = 'row-blue' %}
{{ agent.agent_queue }} |
{{ agent.agent_name }} |
{{ agent.Interface }} |
{{ agent.calls_awnsered }} |
{{ agent.last_call_ago }} |
{% elif agent.agent_status == 'Unavailable' %}
{% set status_class = 'row-red' %}
{% elif agent.agent_status == 'Busy' %}
{% set status_class = 'row-yellow' %}
{% elif agent.agent_status == 'InUse' %}
{% set status_class = 'row-pink' %}
{% else %}
{% set status_class = 'row-red' %}
{% endif %}
{% endfor %}
{{ _('Queue') }}
|
{{ _('Name') }}
|
{{ _('Interface') }}
|
{{ _('Calls') }}
|
{{ _('Last call at') }}
|
{% for agent in agents %}
{% set status_class = '' %}
{% if agent.agent_status == 'InCall' %}
{% set status_class = 'row-green' %}
{% elif agent.agent_status == 'free' %}
{% set status_class = 'row-blue' %}
{% elif agent.agent_status == 'unavailable' %}
{% set status_class = 'row-red' %}
{{ agent.agent_queue }} |
{{ agent.agent_name }} |
{{ agent.Interface }} |
{{ agent.calls_awnsered }} |
{{ agent.last_call_ago }} |
{% elif agent.agent_status == 'Busy' %}
{% set status_class = 'row-yellow' %}
{% elif agent.agent_status == 'InUse' %}
{% set status_class = 'row-pink' %}
{% else %}
{% set status_class = 'row-red' %}
{% endif %}
{% endfor %}
{{ _('Queue') }}
|
{{ _('Name') }}
|
{{ _('Interface') }}
|
{{ _('Calls Taken') }}
|
{{ _('Current call time') }}
|
{% for agent in agents %}
{% set status_class = '' %}
{% if agent.agent_status == 'in call' %}
{% set status_class = 'row-green' %}
{{ agent.agent_queue }} |
{{ agent.Agent_Name }} |
{{ agent.Agent_Extension }} |
{{ agent.Agent_Calls_Taken }} |
{{ agent.Agent_Call_Time }} |
{% elif agent.agent_status == 'free' %}
{% set status_class = 'row-blue' %}
{% elif agent.agent_status == 'Unavailable' %}
{% set status_class = 'row-red' %}
{% elif agent.agent_status == 'Busy' %}
{% set status_class = 'row-yellow' %}
{% elif agent.agent_status == 'InUse' %}
{% set status_class = 'row-pink' %}
{% else %}
{% set status_class = 'row-red' %}
{% endif %}
{% endfor %}