blob: 398ee512d863b05f1d988e8ecb433b33ea3b6e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
%table.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}
|