summaryrefslogtreecommitdiff
path: root/app/views/gateway_settings/_index_core.html.haml
blob: 1b8e4437b16da82acdd80dc6534ca1aa1aaec6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%table
  %tr
    %th= t('gateway_settings.index.gateway_id')
    %th= t('gateway_settings.index.name')
    %th= t('gateway_settings.index.value')
    %th= t('gateway_settings.index.class_type')
    %th= t('gateway_settings.index.description')

  - reset_cycle
  - for gateway_setting in gateway_settings
    %tr{:class => cycle('odd', 'even')}
      %td= gateway_setting.gateway_id
      %td= gateway_setting.name
      %td= gateway_setting.value
      %td= gateway_setting.class_type
      %td= gateway_setting.description
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => gateway_setting}