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

  - reset_cycle
  - for softkey in softkeys.order(:position)
    %tr{:class => cycle('odd', 'even')}
      %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}