blob: 019aec448864c0e7b9feddcdeff71b0f096a1782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- content_for :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}
|