jobs_controller.rb:
def create
@job = Job.new(params[:job])
render "preview" if @job.save
end
preview.html.haml:
- render @job
_job.html.haml:
- content_for :title, "Job preview"
%h1= @job.title
The problem: @job in the _job.html.haml file does not get rendered, even though the title variable on the first line works fine.
Replace the following in
preview.html.hamlThen your partial will have
Shorter way of doing the above is