Skip to content

Instantly share code, notes, and snippets.

@metamn
Created March 5, 2010 13:16
Show Gist options
  • Save metamn/322709 to your computer and use it in GitHub Desktop.
Save metamn/322709 to your computer and use it in GitHub Desktop.
tree display with partials
index.haml
%ul
= render :partial => "category", :collection => Category.roots
_category.haml
%li
= category.name
- unless category.children.blank?
%ul
= render :partial => "category", :collection => category.children
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment