I've got some ugly code I don't know how to improve on.  I've got a
link_to tag that takes a fair amount of html as a block.  I need the
href value for the link to be different depending on some logic, there
are four possible values for the href.

What I ended us with was this, and it's pretty unreadable.  Any
suggestions on how to do this better?

                      <%= link_to (@brand.nil? ? (@store.nil? ?
(from_catalog_path(params[:id].blank? ? Category.root.id :
params[:id], product.id, product.name_url)) :
(from_store_path(@store.id, product.id))) :
(from_brand_path(@brand.id, product.id))) do -%>
                            ...... HTML IN HERE .....
                      <% end %>

-- 
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.

Reply via email to