Index.cshtml 516 B

12345678910111213141516171819202122232425262728
  1. @model IEnumerable<Article>
  2. @{
  3. string title = "Gestion du stock";
  4. ViewBag.Title = title;
  5. }
  6. <h2>@title</h2>
  7. @using( Html.BeginForm() ) {
  8. <table class="table table-bordered">
  9. <tr>
  10. <th>Nom</th>
  11. <th>Prix</th>
  12. <th>Qté</th>
  13. </tr>
  14. @{
  15. int i = 0;
  16. foreach( var a in Model ) {
  17. Html.RenderPartial("UneLigneArticle", a, new ViewDataDictionary() { { "I", i } } );
  18. i++;
  19. }
  20. }
  21. <tr>
  22. <td colspan="3"><input type="submit" value="MàJ" class="btn btn-primary" /></td>
  23. </tr>
  24. </table>
  25. }