Hi,
A bit unsure how this gets accomplished - particularly how it might
get set up in the layout.
Currently -
This is my welcome.rthml (what comes up at main page)
<% if @u %>
<%= render :partial => “main/session” %>
<% else %>
<%= render :partial => “main/login” %>
<%= render :partial => “main/register” %>
<% end %>
But in my layout currently to make sure in what divs partials are
placed I’m doing this:
Because the layout is set up as it is, the if /else in the welcome
doesn’t really effect output.
I’m not really clear what this problem is. It appears you’re
rendering the same partial twice, once in the layout and once
in the view, but I may be entirely misunderstanding.
Any suggestions ?
How about putting the conditional renders into a helper?
Hi,
A bit unsure how this gets accomplished - particularly how it might
get set up in the layout.
Currently -
This is my welcome.rthml (what comes up at main page)
<% if @u %>
<%= render :partial => “main/session” %>
<% else %>
<%= render :partial => “main/login” %>
<%= render :partial => “main/register” %>
<% end %>
But in my layout currently to make sure in what divs partials are
placed I’m doing this: