summaryrefslogtreecommitdiff
path: root/app/views/gateway_settings/_index_core.html.haml
blob: ded7eb89c0d60e010175e753d8dce3aab306cff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%table{:class => 'table table-striped'}
  %tr
    %th= t('gateway_settings.index.name')
    %th= t('gateway_settings.index.value')
    %th= t('gateway_settings.index.description')

  
  - for gateway_setting in gateway_settings
    %tr
      %td= gateway_setting.name
      %td= gateway_setting.value
      %td= gateway_setting.description
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => gateway_setting.gateway, :child => gateway_setting}