{% include 'row_general_data.html' %}
{{ _('Agents') }}:
{{ _('Name') }} |
{{ _('Contact') }} |
{{ _('Status') }} |
{{ _('State') }} |
{{_('Calls')}} |
{{ _('Last call at') }} |
{% for agent_name, agent in data.members.items() %}
{{ agent.Name }} |
{{ agent.Contact }} |
{{ agent.Status }}
|
{{ agent.State }}
|
{{ agent.CallsAnswered }} |
{{ agent.LastCall }} |
{% endfor %}
{{ _('Callers') }}:
{{ _('Id Name') }} |
{{ _('Id Number') }} |
{{ _('Wait') }} |
{% for id, caller in data.entries.items() %}
{{ caller.CidName }} |
{{ caller.CidNum }} |
{{ caller.CreatedEpochAgo }} |
{% endfor %}
{% endblock %}
{% block script_end %}
{% endblock %}