summaryrefslogtreecommitdiff
path: root/app/views/acd_agents/_index_core.html.haml
blob: f1172f208af83688ca61740dc9201dcd22fd4baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%table.table.table-striped
  %thead
    %tr
      %th
      %th= t('acd_agents.index.name')
      %th= t('acd_agents.index.last_call')
      %th= t('acd_agents.index.calls_answered')
      %th= t('acd_agents.index.destination')

  %tbody
    - for acd_agent in acd_agents
      %tr
        %td
          - if acd_agent.status == 'active'
            %a.btn.btn-small.btn-success{ :href => toggle_acd_agent_path(acd_agent) }
              %i.icon-ok.icon-white
          - elsif acd_agent.status == 'inactive'
            %a.btn.btn-small.btn-danger{ :href => toggle_acd_agent_path(acd_agent) }
              %i.icon-ban-circle.icon-white
          - else
            %a.btn.btn-small.btn-warning{ :href => toggle_acd_agent_path(acd_agent) }
              = acd_agent.status
        %td= acd_agent.name
        %td= acd_agent.last_call
        %td= acd_agent.calls_answered
        %td= acd_agent.destination
        =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => acd_agent.automatic_call_distributor, :child => acd_agent}