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