diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-10 10:34:57 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-10 10:34:57 +0100 |
commit | 70c436c52c76cf866b03fcab6bc43437c9490cd1 (patch) | |
tree | cf7dc1f98464d3893718be1900dd6a98437c41a5 /app/views/gs_parameters/edit.html.haml | |
parent | b1fad77507c71402d25f085c048848462c2d52f1 (diff) |
GsParameter :entity, :section and :name can't be changed in the GUI any more.
Diffstat (limited to 'app/views/gs_parameters/edit.html.haml')
-rw-r--r-- | app/views/gs_parameters/edit.html.haml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/gs_parameters/edit.html.haml b/app/views/gs_parameters/edit.html.haml index 7c24234..c00c7df 100644 --- a/app/views/gs_parameters/edit.html.haml +++ b/app/views/gs_parameters/edit.html.haml @@ -1,3 +1,15 @@ - title t("gs_parameters.edit.page_title") +%p + %strong= t('gs_parameters.show.name') + ":" + = @gs_parameter.name +- if !@gs_parameter.entity.blank? + %p + %strong= t('gs_parameters.show.entity') + ":" + = @gs_parameter.entity +- if !@gs_parameter.section.blank? + %p + %strong= t('gs_parameters.show.section') + ":" + = @gs_parameter.section + = render "form"
\ No newline at end of file |