Displaying 1 result from an estimated 1 matches for "surahom".
Did you mean:
surahome
2010 Jan 22
5
Rails Render Issue
...page With login.....
<%end%>
In my photos/index view
<%if logged_in? %>
.... Welcome page .....
<%else%>
<%=render "users/index"%>
<%end%>
Routes:
map.root :controller => ''user'', :action => ''surahome''
When i login to the page, it redirects to http://www.example.com/photos
and the page displays correctly.
When i access the main url http://www.example.com
i got this error : Missing template photos/_index.erb in view path
app/views
I am working with rails 2.3.5
Any su...