summaryrefslogtreecommitdiff
path: root/app/views/softkeys/_index_core.html.haml
blob: 6c30803ce24962014c97dae256d0402edbc79b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%table{:class => 'table table-striped'}
  %thead
    %tr
      %th= t('softkeys.index.function')
      %th= t('softkeys.index.number')
      %th= t('softkeys.index.label')

  %tbody
    - for softkey in softkeys.order(:position)
      %tr
        %td
          =softkey.to_s
        %td= softkey.number
        %td= softkey.label
        =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => softkey.sip_account, :child => softkey}