blob: 7919f8c003f800319d592b8cae14624c2bc77b63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
- cache(@gs_parameter) do
- title t("gs_parameters.show.page_title")
%p
%strong= t('gs_parameters.show.name') + ":"
= @gs_parameter.name
%p
%strong= t('gs_parameters.show.section') + ":"
= @gs_parameter.section
%p
%strong= t('gs_parameters.show.value') + ":"
= @gs_parameter.value
%p
%strong= t('gs_parameters.show.class_type') + ":"
= @gs_parameter.class_type
%p
%strong= t('gs_parameters.show.description') + ":"
= @gs_parameter.description
= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @gs_parameter }
|