Thanks both!! So the code snippet below now works correctly.... Is there
a more typical way of doing what I am doing or would you consider this
idiomatic rails?
-- PIto
def user_navigation_helper
content_tag(:div, :class =>"banner_right") do
content_tag(:ul, :class => "wat-cf") do
if current_user()
content_tag(:li) { current_user.email } +
content_tag(:li) { link_to("Edit profile",
edit_user_path(:current)) } +
content_tag(:li) { link_to("Logout", logout_path) }
else
content_tag(:li) { link_to("Login", login_path) } +
content_tag(:li) { link_to("Register", new_user_path) }
end
end
end
end
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.