summaryrefslogtreecommitdiff
path: root/app/views/gateway_parameters/_index_core.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/gateway_parameters/_index_core.html.haml')
-rw-r--r--app/views/gateway_parameters/_index_core.html.haml13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/views/gateway_parameters/_index_core.html.haml b/app/views/gateway_parameters/_index_core.html.haml
new file mode 100644
index 0000000..0d00aaf
--- /dev/null
+++ b/app/views/gateway_parameters/_index_core.html.haml
@@ -0,0 +1,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}