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

    %tbody
      - for softkey in softkeys
        = 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}