Sha256: 71c2d4091d8d09dbda8bf2edf085a898684a983f021eaaa214780a8b242f3729
Contents?: true
Size: 1.07 KB
Versions: 8
Compression:
Stored size: 1.07 KB
Contents
<% render 'admin/shared/product_sub_menu' %> <h2><%= ProductGroup.model_name.human %></h2> <p> <%= ProductGroup.human_attribute_name(:name) %>: <%= @product_group.name %> </p> <p> <%= ProductGroup.human_attribute_name(:url) %>: <%= link_to @product_group.permalink, "/pg/#{@product_group.permalink}" %> </p> <h2><%= ProductGroup.human_attribute_name(:product_scopes) %>(<%= @product_group.product_scopes.count %>)</h2> <table class="product-scopes" data-hook="product_scopes"> <thead> <tr data-hook="product_scopes_header"> <th><%= ProductScope.human_attribute_name(:description) %></th> <th><%= ProductScope.human_attribute_name(:arguments) %></th> </tr> </thead> <tbody> <% @product_group.product_scopes.each do |product_scope| %> <tr <%= !product_scope.valid? ? "class='invalid'":'' %> data-hook="product_scopes_row"> <td> <%= product_scope.to_sentence %> </td> <td> <%= product_scope.arguments.join(', ') %> </td> </tr> <% end %> </tbody> </table> <%= render :partial => 'preview.html' %>
Version data entries
8 entries across 8 versions & 1 rubygems