Ruby on Rails Monday, August 18, 2014


On Monday, August 18, 2014 8:25:13 AM UTC+1, Ruby-Forum.com User wrote:
I have this code(i use devise this is a redirect for user sign in):

layout :layout_by_resource

  def layout_by_resource
    if devise_controller? && resource_name == :user && action_name ==
'new'

      "devise"
    else
      "application"
    end

 end

In my devise layout i use some variables,(from example i use @lesson)
but i don't know how to pass it to layout.

It's no different to passing content to any other view - instance variables set by the controller are copied to the view.

Fred
 
I try this in my aplication controller but seems like my css isn't
working to any page.
layout 'devise'
  before_filter :set_constants

    def set_constants
       @lesson=Lesson.all
       @sublesson=Sublesson.all
    end

Thanks!

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b745e61c-d178-4898-b03a-9bd6955a9976%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment