blob: 4f38e0bfc8c71eec4f2fc2997c0e7762dc289116 (
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_id
%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 => { :child => @gateway_setting }
|