Advertisement
Guest User

HTML FILE

a guest
Jun 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.99 KB | None | 0 0
  1. @*@model SurffingSite.Models.Products*@
  2. @model List<SurffingSite.Models.Products>
  3.  
  4.     @{
  5.         ViewBag.Title = "DisplayAllProducts";
  6.     }
  7.  
  8. <html dir="rtl">
  9. <link href="~/Content/display-products.css" rel="stylesheet" />
  10.  
  11. <body>
  12.     <h2 class="page-header">המוצרים שלנו</h2><br />
  13.     <section>
  14.  
  15.         <div class="row">
  16.  
  17.             @foreach (var product in Model)
  18.             {
  19.  
  20.                 <figure class="portfolio-item col-md-4 col-sm-6">
  21.                     <img src="~/images/@product.Picture" class="img-responsive" />
  22.                     <div class="product-details">
  23.                         <h2 class="product-name">מוצר: @product.ProductName</h2>
  24.                         <label>קטגוריה: @product.Category</label>
  25.                         <div class="product-description">תיאור: @product.Description</div>
  26.                         <div class="product-price">מחיר: @product.Price ₪</div>
  27.                         <div class="form-group">
  28.                             <label>מספר יחידות</label>
  29.                             <div class="col-md-10">
  30.                                 <input type="text" name="amounter" id="amounter" />
  31.                             </div>
  32.                         </div>
  33.                         <div>
  34.                             <a id="btn_add" href="@Url.Action("AddToCart", "Cart", product)" class="btn btn-info btn-lg" style="margin-left:60px">
  35.                                 <span class="glyphicon glyphicon-shopping-cart"></span> הוסף לעגלה
  36.                             </a><br />
  37.                             <a id="btn_more_info" href="@Url.Action("Index", "Home")" class="btn btn-info btn-lg" style="margin-left:60px">
  38.                                 <span class="glyphicon glyphicon-eye-open"></span> קרא עוד
  39.                             </a>
  40.                         </div>
  41.  
  42.                     </div>
  43.                 </figure>
  44.             }
  45.         </div>
  46.     </section>
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement