summaryrefslogtreecommitdiff
path: root/app/views/gateway_parameters/_index_core.html.haml
blob: 0d00aaf2996d43a2c774af72915d9902f0621cd0 (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')

  
  - for gateway_parameter in gateway_parameters
    %tr
      %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}