Created
March 5, 2010 13:16
-
-
Save metamn/322709 to your computer and use it in GitHub Desktop.
tree display with partials
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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