Sha256: e07874ff47745dce9d1db0a9348c91a125a8f70880777cbc548c66d394a3c6fc

Contents?: true

Size: 403 Bytes

Versions: 3

Compression:

Stored size: 403 Bytes

Contents

<ul class="nav nav-chapters">
<% taxons.each do |taxon| %>
  <li <%= active_taxon(taxon) %>>
    <%= link_to taxon.name, taxon_products_path(:taxon_id => taxon) %>
    <ul class="nav nav-chapters">
    <% taxon.children.each do |child| %>
      <li <%= active_taxon(child) %>><%= link_to child.name, taxon_products_path(:taxon_id => child) %></li>
    <% end %>
    </ul>
  </li>
<% end %>
</ul>







Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_trade-0.0.3 app/views/trade/goods/taxon/_nav.html.erb
rails_trade-0.0.2 app/views/trade/goods/taxon/_nav.html.erb
rails_trade-0.0.1 app/views/goods/taxon/_nav.html.erb