{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumbs([ { 'name': _('Cdr'), 'link': url_for('.CdrView:index'), 'icon': 'newspaper-o' } ]) }} {% endblock %} {% block content %}
{% call build_list_containers(_('Cdr'), 'newspaper-o', size='12') %} {% call build_list_table(list=url_for('.CdrView:list_json')) %} {% call build_list_table_headers(actions_column=false) %} {{ _('Date') }} {{ _('Source') }} {{ _('Source name') }} {{ _('Destination') }} {{ _('Destination name') }} {{ _('Duration') }} {{ _('Answered') }} {% endcall %} {% call(cdr) build_list_table_rows(resource_list['items']) %} {{ cdr.start }} {{ cdr.source_extension }} {{ cdr.source_name }} {{ cdr.destination_extension }} {{ cdr.destination_name }} {{ cdr.duration }} {{ cdr.answered }} {% endcall %} {% endcall %} {% endcall %}
{% endblock %} {% block additional_js %} {% endblock %}