Sha256: a520842e750e0cd3469520fce36d224ff376a521caadd3e44a5bb856f516dfa2

Contents?: true

Size: 1.07 KB

Versions: 2

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

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/product_groups/show.html.erb
spree_core-0.70.RC1 app/views/admin/product_groups/show.html.erb