I\'m probably missing something obvious here but here\'s what I\'m trying to do.
From the view, I\'m calling a custom helper function
IMHO, you should not have HTML hardcoded in Ruby code. Instead, prefer partials views.
module ServicesHelper def display_services(user) render :partial => "shared/display_services", :locals => {:user => user} end end