summaryrefslogtreecommitdiff
path: root/app/views/softkeys/_index_core.html.haml
blob: 70c96bc4a624dba94f84da1860fdc2d6cbe9c233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- cache(['softkeys_table', I18n.locale, current_user, softkeys]) do
  %table.table.table-striped
    %thead
      %tr
        %th
        %th= t('softkeys.index.function')
        %th= t('softkeys.index.number')
        %th= t('softkeys.index.label')

    %tbody{ :id => "softkeys", :'data-update-url' => sort_softkeys_url}
      - for softkey in softkeys
        - cache(['softkeys_table_tr', I18n.locale, current_user, softkey]) do
          = content_tag_for :tr, softkey do
            %td
              %span.handle
                %i.icon-resize-vertical      
            %td= softkey.function
            %td= softkey.number
            %td= softkey.label
            =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => softkey.sip_account, :child => softkey}