Pārlūkot izejas kodu

Iteration C5.

master
Nils Dittberner pirms 9 gadiem
vecāks
revīzija
792a8a2a57
1 mainītis faili ar 13 papildinājumiem un 9 dzēšanām
  1. +13
    -9
      app/views/store/index.html.erb

+ 13
- 9
app/views/store/index.html.erb Parādīt failu

@@ -2,13 +2,17 @@

<h1>Your Pragmatic Catalog</h1>

<% @products.each do |product| %>
<div class="entry">
<%= image_tag(product.image_url) %>
<h3><%= product.title %></h3>
<%= sanitize(product.description) %>
<div class="price_line">
<span class="price"><%= number_to_currency(product.price) %></span>
</div>
</div>
<% cache @products do %>
<% @products.each do |product| %>
<% cache product do %>
<div class="entry">
<%= image_tag(product.image_url) %>
<h3><%= product.title %></h3>
<%= sanitize(product.description) %>
<div class="price_line">
<span class="price"><%= number_to_currency(product.price) %></span>
</div>
</div>
<% end %>
<% end %>
<% end %>

Notiek ielāde…
Atcelt
Saglabāt