forked from spen/seminar
Fix bug.
This commit is contained in:
parent
297f764f96
commit
1d94b4dfed
|
@ -4,6 +4,7 @@ class SeminarsController < ApplicationController
|
||||||
include MemberHelper
|
include MemberHelper
|
||||||
include ActionView::Context #vary important (only add this can access @@session from view)
|
include ActionView::Context #vary important (only add this can access @@session from view)
|
||||||
include Admin::SeminarsHelper
|
include Admin::SeminarsHelper
|
||||||
|
FrontendMethods = ["show_privacy", "show_data", "check_email", "check_availability", "signup_ok", "edit_file", "con_login", "con_upload", "con_logout"]
|
||||||
# include SimpleCaptcha::ControllerHelpers
|
# include SimpleCaptcha::ControllerHelpers
|
||||||
def index
|
def index
|
||||||
|
|
||||||
|
|
|
@ -446,9 +446,11 @@ protected
|
||||||
def form_label
|
def form_label
|
||||||
if self.markup == "text_area"
|
if self.markup == "text_area"
|
||||||
plc = typeD["placeholder"][I18n.locale].to_s.blank? ? '' : "(#{typeD["placeholder"][I18n.locale]})"
|
plc = typeD["placeholder"][I18n.locale].to_s.blank? ? '' : "(#{typeD["placeholder"][I18n.locale]})"
|
||||||
"<span style='margin-right: 0.5em;'>"+
|
label_tag(key, '' , :class=>"col-sm-2 control-label muted") do
|
||||||
label_tag(key,(!@require.blank? ? '*'+title : title),:class=>"col-sm-2 control-label muted",:style =>'display: contents;')+
|
concat (!@require.blank? ? '*'+title : title)
|
||||||
tag(:br)+"#{plc}</span>"
|
concat tag(:br)
|
||||||
|
concat plc
|
||||||
|
end
|
||||||
else
|
else
|
||||||
label_tag(key,(!@require.blank? ? '*'+title : title),:class=>"col-sm-2 control-label muted")
|
label_tag(key,(!@require.blank? ? '*'+title : title),:class=>"col-sm-2 control-label muted")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue