summaryrefslogtreecommitdiff
path: root/app/views/voicemail_accounts/_index_core.html.haml
blob: 908c2b4e342370a24a1182353b142400c069f057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%table.table.table-striped
  %tr
    %th
    %th= t('voicemail_accounts.index.name')

  
  - for voicemail_account in voicemail_accounts
    %tr
      %td
        - if voicemail_account.active
          %i.icon-ok
        - else
          %i.icon-ban-circle
      %td= voicemail_account.name
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => voicemail_account.voicemail_accountable, :child => voicemail_account}