Created
June 15, 2011 09:09
-
-
Save zenlor/1026764 to your computer and use it in GitHub Desktop.
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
| <% taxons.each do |t| -%> | |
| <% if t.class == Array -%> | |
| <%= partial "taxonomy/chooser", :locals => { :f => f, :taxons => t } %> | |
| <% else -%> | |
| <span style="margin-left: <%= 15*t.depth %>px"> </span> | |
| <input type='checkbox' name="taxonomy[]" value="<%= t.id %>" <%= tax_checked?(t.id, f.object.taxonomy) %> ><%= t.title %><br> | |
| <% end -%> | |
| <% end -%> |
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
| @page.taxonomy = params[:taxonomy].map { |t| | |
| Taxonomy.find(t) | |
| } | |
| if @page.save | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment