<%@ Page Title="Catalog" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master" %> <% Title = Model.Name; %> <%= Html.Encode(Model.Reference) %>

<%= Html.Encode(Model.Description) %>

<% if (Model.Images!=null) foreach (ProductImage i in Model.Images) { %> <%=i.Alt%> <% } %> <% if (Model.UnitaryPrice !=null) { %> Prix unitaire : <%= Html.Encode(Model.UnitaryPrice.Quantity.ToString())%> <%= Html.Encode(Model.UnitaryPrice.Unit.Name)%> <% } else { %> Gratuit! <% } %>
<%= Html.CommandForm(Model,"Ajouter au panier") %> <% if (Model.CommandValidityDates!=null) { %> Offre valable du <%= Model.CommandValidityDates.StartDate.ToString("dd/MM/yyyy") %> au <%= Model.CommandValidityDates.EndDate.ToString("dd/MM/yyyy") %>. <% } %>