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

  
  - 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}