@model IEnumerable
@{ string title = "Gestion du stock"; ViewBag.Title = title; }

@title

@using( Html.BeginForm() ) { @{ int i = 0; foreach( var a in Model ) { Html.RenderPartial("UneLigneArticle", a, new ViewDataDictionary() { { "I", i } } ); i++; } }
Nom Prix Qté
}