{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumbs([ { 'name': _('IVR'), 'link': url_for('.IvrView:index'), 'icon': 'navicon' } ]) }} {% endblock %} {% block content %}
{% call build_list_containers(_('IVR'), 'navicon') %} {% call build_list_table() %} {% call build_list_table_headers(get=url_for('.IvrView:get', id=''), delete=url_for('.IvrView:delete', id=''), add=url_for('.IvrView:new')) %} {{ _('Name') }} {{ _('Extensions') }} {{ _('Menu sound') }} {% endcall %} {% call(ivr) build_list_table_rows(resource_list['items']) %} {{ ivr.name }} {% if not ivr.incalls %} - {% else %} {{ _('incall') }}: {% endif %} {{ ivr.menu_sound }} {% endcall %} {% endcall %} {% endcall %}
{% endblock %}