Skip to content

Instantly share code, notes, and snippets.

Created October 22, 2014 09:34
Show Gist options
  • Select an option

  • Save anonymous/4640a4207ebe5ae72ba3 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/4640a4207ebe5ae72ba3 to your computer and use it in GitHub Desktop.
<% Category.all.arrange.each do |root_cats, sub_cats| %>
<ul>
<li><%= root_cats.name %></li>
<% sub_cats.to_a.each do |sub| %>
<ul><li> sub.name</li></ul>
<% end %>
</ul>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment