summaryrefslogtreecommitdiff
path: root/app/views/acd_callers/_index_core.html.haml
blob: 3b3327a5e5e7aeacb0588b1211035befebf91d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%table.table.table-striped
  %thead
    %tr
      %th= t('acd_callers.index.channel_uuid')
      %th= t('acd_callers.index.automatic_call_distributor_id')
      %th= t('acd_callers.index.status')
      %th= t('acd_callers.index.enter_time')
      %th= t('acd_callers.index.agent_answer_time')
      %th= t('acd_callers.index.callback_number')
      %th= t('acd_callers.index.callback_attempts')

  %tbody
    - for acd_caller in acd_callers
      %tr
        %td= acd_caller.channel_uuid
        %td= acd_caller.automatic_call_distributor_id
        %td= acd_caller.status
        %td= acd_caller.enter_time
        %td= acd_caller.agent_answer_time
        %td= acd_caller.callback_number
        %td= acd_caller.callback_attempts
        =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => acd_caller}