blob: 982ffacd26a52f9d9e4f8687b89b007d7b8dcdcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- title t("gateway_parameters.show.page_title")
%p
%strong= t('gateway_parameters.show.gateway_id') + ":"
= @gateway_parameter.gateway
%p
%strong= t('gateway_parameters.show.name') + ":"
= @gateway_parameter.name
%p
%strong= t('gateway_parameters.show.value') + ":"
= @gateway_parameter.value
%p
%strong= t('gateway_parameters.show.class_type') + ":"
= @gateway_parameter.class_type
%p
%strong= t('gateway_parameters.show.description') + ":"
= @gateway_parameter.description
= render :partial => 'shared/show_edit_destroy_part', :locals => { :parent => @gateway, :child => @gateway_parameter }
|