{% extends 'base.html' %} {% block title %} QPanel - {{ name }} {% endblock %} {% block main %}

{{ name}} -

{% include 'row_general_data.html' %}

{{ _('Agents') }}:


{% for agent_name, agent in data.members.items() %} {% endfor %}
{{ _('Name') }} {{ _('Contact') }} {{ _('Status') }} {{ _('State') }} {{_('Calls')}} {{ _('Last call at') }}
{{ agent.Name }} {{ agent.Contact }} {{ agent.Status }} {{ agent.State }} {{ agent.CallsAnswered }} {{ agent.LastCall }}

{{ _('Callers') }}:


{% for id, caller in data.entries.items() %} {% endfor %}
{{ _('Id Name') }} {{ _('Id Number') }} {{ _('Wait') }}
{{ caller.CidName }} {{ caller.CidNum }} {{ caller.CreatedEpochAgo }}
{% endblock %} {% block script_end %} {% endblock %}