Sha256: 416d680172347539b82d4c70cc85fd7894675c16e70bd111192f52ff7a623d98

Contents?: true

Size: 403 Bytes

Versions: 8

Compression:

Stored size: 403 Bytes

Contents

<% if taxon.children.length != 0 %>
  <ul>
    <% taxon.children.each do |child| %>
      <li id="<%= child.id %>" rel="taxon">
        <a style="background-image: url(<%= child.icon.url %>);" href="#"><%= child.name %></a>
        <% if child.children.length > 0 %>
          <%= render :partial => 'taxon', :locals => {:taxon => child} %>
        <% end %>
      </li>
    <% end %>
  </ul>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_core-0.70.7 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.6 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.5 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.4 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.3 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.2 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.1 app/views/admin/taxonomies/_taxon.html.erb
spree_core-0.70.0 app/views/admin/taxonomies/_taxon.html.erb