Advertisement
Guest User

Untitled

a guest
Mar 27th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.72 KB | None | 0 0
  1. <% Product.all.sample(9) do |product| %>
  2.       <div class="card">
  3.         <div class="img-padding">
  4.           <img src="https://image.shutterstock.com/z/stock-photo--d-rendered-illustration-of-the-words-stock-photo-1329169754.jpg" class="card-img-top" alt="...">
  5.         </div>
  6.         <div class="card-body">
  7.           <h5 class="card-title"><%= product.name %></h5>
  8.           <p><%= product.description %></p>
  9.           <div class="d-flex justify-content-between">
  10.             <span>Cena: <%= product.price %> ZŁ</span><span align="right">Pozostało sztuk: <%= product.quantity %></span>
  11.           </div>
  12.           <%= link_to "Opis...", product_path, { :class=>"nav-link"}%>
  13.         </div>
  14.       </div>
  15.     <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement