ActionView::MissingTemplate in Devise/sessions#new
ActionView::MissingTemplate in Devise/sessions#new
Showing /app/views/layouts/application.html.erb where line #36 raised:
Missing partial devise/sessions/rightsidediv with {:handlers=>[:erb, :rjs, :build开发者_JAVA技巧er, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/app/views", "/home/user1/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.4.2/app/views"
I have this in application.html.erb :
<%= render :partial => "rightsidediv" %>
The _rightsidedive.html.erb is in /views/posts/
add the path to your include:
<%= render :partial => "/views/posts/rightsidediv" %>
精彩评论