summaryrefslogtreecommitdiff
path: root/app/views/calls/_index_core.html.haml
blob: e5b769e9c2b8a15c206277074f3921062d80e6bd (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
29
30
31
32
33
34
35
36
37
38
%table.table.table-striped
  %thead
    %tr
      %th
      %th= t('calls.index.created')
      %th= t('calls.index.destination')
      %th= t('calls.index.caller')
      %th= t('calls.index.callee')
      %th= t('calls.index.callstate')
      %th= t('calls.index.codecs')
      %th
  
  %tbody
    - for call in calls
      %tr
        %td
          - if call.direction == 'inbound'
            %i.icon-arrow-left
          - else
            %i.icon-arrow-right
        %td
          = call.created
        %td
          = call.dest
        %td
          = "#{call.cid_name} #{call.cid_num}"
        %td
          = "#{call.callee_name} #{call.callee_num}"
        %td
          = call.callstate
        %td
          = "#{call.read_codec}/#{call.write_codec}"

        %td
          %p
            %a.btn.btn-small.btn-danger{'data-confirm' => t('calls.index.actions.confirm_destroy'), 'data-method' => 'delete', :href => method( :"#{parent.class.name.underscore}_call_path" ).(parent, call), :rel => 'nofollow'}
              %i.icon-trash.icon-white
              =t('calls.index.actions.destroy')