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 ActionView::Context #vary important (only add this can access @@session from view)
|
||||
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
|
||||
def index
|
||||
|
||||
|
|
|
@ -446,9 +446,11 @@ protected
|
|||
def form_label
|
||||
if self.markup == "text_area"
|
||||
plc = typeD["placeholder"][I18n.locale].to_s.blank? ? '' : "(#{typeD["placeholder"][I18n.locale]})"
|
||||
"<span style='margin-right: 0.5em;'>"+
|
||||
label_tag(key,(!@require.blank? ? '*'+title : title),:class=>"col-sm-2 control-label muted",:style =>'display: contents;')+
|
||||
tag(:br)+"#{plc}</span>"
|
||||
label_tag(key, '' , :class=>"col-sm-2 control-label muted") do
|
||||
concat (!@require.blank? ? '*'+title : title)
|
||||
concat tag(:br)
|
||||
concat plc
|
||||
end
|
||||
else
|
||||
label_tag(key,(!@require.blank? ? '*'+title : title),:class=>"col-sm-2 control-label muted")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue