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

  - reset_cycle
  - for gateway_parameter in gateway_parameters
    %tr{:class => cycle('odd', 'even')}
      %td= gateway_parameter.name
      %td= gateway_parameter.value
      %td= gateway_parameter.description
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => gateway_parameter.gateway, :child => gateway_parameter}