Sha256: b3cd5c1a870d5a42139c57536ff7ac6382e60cc864679bd06b2fff6df0956c67

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

<% content_for :body_content_title do %>
  <%= @product.name %>
<% end %>

<% content_for :body_content_left do %>
  <section>
    <h1>Store</h1>
    <p>
      <%=raw @product.store %>
    </p>
  </section>
  <section>
    <h1>Name</h1>
    <p>
      <%=raw @product.name %>
    </p>
  </section>
  <section>
    <h1>Code</h1>
    <p>
      <%=raw @product.code %>
    </p>
  </section>
  <section>
    <h1>Description</h1>
    <p>
      <%=raw @product.description %>
    </p>
  </section>
  <section>
    <h1>Date Available</h1>
    <p>
      <%=raw @product.date_available %>
    </p>
  </section>
  <section>
    <h1>Price</h1>
    <p>
      <%=raw @product.price %>
    </p>
  </section>
  <section>
    <h1>Size Width</h1>
    <p>
      <%=raw @product.size_width %>
    </p>
  </section>
  <section>
    <h1>Size Height</h1>
    <p>
      <%=raw @product.size_height %>
    </p>
  </section>
  <section>
    <h1>Size Depth</h1>
    <p>
      <%=raw @product.size_depth %>
    </p>
  </section>
  <section>
    <h1>Weight</h1>
    <p>
      <%=raw @product.weight %>
    </p>
  </section>
  <section>
    <h1>Tax Type</h1>
    <p>
      <%=raw @product.tax_type %>
    </p>
  </section>
  <section>
    <h1>Digital Download</h1>
    <p>
      <%=raw @product.digital_download %>
    </p>
  </section>
  <section>
    <h1>Main Pic</h1>
    <p>
      <%=raw @product.main_pic %>
    </p>
  </section>
  <section>
    <h1>Inactive</h1>
    <p>
      <%=raw @product.inactive %>
    </p>
  </section>
<% end %>

<% content_for :body_content_right do %>
  <aside>
    <h2><%= t('.other') %></h2>
    <ul id="products">
      <% @products.each do |product| %>
        <li>
          <%= link_to product.name, refinery.products_product_path(product) %>
        </li>
      <% end %>
    </ul>
  </aside>
<% end %>

<%= render '/refinery/content_page' %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
refinerycms-stores-0.0.5 app/views/refinery/products/products/show.html.erb
refinerycms-stores-0.0.4 app/views/refinery/products/products/show.html.erb
refinerycms-stores-0.0.3 app/views/refinery/products/products/show.html.erb
refinerycms-stores-0.0.2 app/views/refinery/products/products/show.html.erb
refinerycms-stores-0.0.1 app/views/refinery/products/products/show.html.erb