Sha256: b604fa0e94d055ca0c3dc9548e4daf51a45fb0e56065673164024556deee16e1
Contents?: true
Size: 749 Bytes
Versions: 31
Compression:
Stored size: 749 Bytes
Contents
<h4><%= t(:available_taxons) %></h4> <table class="index"> <thead> <tr> <th><%= t(:name) %></th> <th><%= t(:path) %></th> <th><%= t(:action) %></th> </tr> </thead> <tbody> <% @taxons.each do |taxon| %> <tr id="<%= dom_id(taxon, :sel) %>"> <td><%= taxon.name %></td> <td><%= taxon_path taxon %></td> <td class="actions"> <%= link_to icon(:add) + ' ' + t(:select), select_admin_product_taxon_path(@product, taxon), :remote => true, :class => 'iconlink' %> </td> </tr> <% end %> <% if @taxons.empty? %> <tr><td colspan="3"><%= t(:no_match_found) %>.</td></tr> <% end %> </tbody> </table>
Version data entries
31 entries across 31 versions & 1 rubygems