You just need to change this:
%td= link_to("Show", {:action => "show", :id => s.id}, :class => "action show") = link_to("Edit", {:action => "edit", :id => s.id}, :class => "action edit") = link_to("Delete", {:action => "delete", :id => s.id}, :class => "action delete")
:
%td = link_to("Show", {:action => "show", :id => s.id}, :class => "action show") = link_to("Edit", {:action => "edit", :id => s.id}, :class => "action edit") = link_to("Delete", {:action => "delete", :id => s.id}, :class => "action delete")
You must also retreat td from tr .
source share