I have the following code in a partial view file _status.html.erb.

<%=
    if session[:user].nil?
        "welcome new user"
         link_to( 'Sign in', login_path) 
    else
         render ( :text => "user name:")
         h(session[:user].name)
     end
 %>

The only thing that I see though is the value of session[:user].name. Any suggestions?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You really don't need to call render, unless it's located in another partial.

In erb:

<% if session[:user].nil? -%>
  welcome new user
  <%= link_to( 'Sign in', login_path) %>
<% else -%>
  user name
  <%= h(session[:user].name) %>
<% end -%>

Or in Haml:

- if session[:user].nil?
  welcome new user
  = link_to( 'Sign in', login_path)
- else
  user name
  = h(session[:user].name)
link|improve this answer
that's great, thanks. I didn't notice the -%> part until now. Thanks! – cbrulak Sep 15 '09 at 21:58
It's the <%= versus <% that is important. The -%> simply suppresses the blank line that would otherwise be sent to the output. – jdl Sep 15 '09 at 22:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.