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

    %tbody{ :id => "softkeys", :'data-update-url' => sort_softkeys_url}
      - for softkey in softkeys
        - cache(['softkeys_table_tr', I18n.locale, current_user, softkey]) do
          = content_tag_for :tr, softkey do
            %td
              - if softkeys.count > 1
                %span.handle
                  %i.icon-resize-vertical      
            %td= t("softkeys.functions.#{softkey.softkey_function}")
            %td= softkey.number
            %td= softkey.label
            =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => softkey.sip_account, :child => softkey}