Index.cshtml 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. @model IEnumerable<Products.Business.Domain.Product>
  2. @{
  3. ViewData["Title"] = "Home Page";
  4. }
  5. <a asp-action="Create" class="btn btn-primary">Create</a>
  6. <table class="table">
  7. <thead>
  8. <tr>
  9. <th scope="col">Id</th>
  10. <th scope="col">Nombre</th>
  11. <th scope="col">Color</th>
  12. <th scope="col">Marca</th>
  13. <th scope="col">Acciones</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. @foreach (var item in Model)
  18. {
  19. <tr>
  20. <td>@item.Id</td>
  21. <td>@item.Name</td>
  22. <td>@item.Color</td>
  23. <td>@item.Brand</td>
  24. <!-- Actions Buttons -->
  25. <td class="text-center">
  26. <a asp-action="Edit" asp-route-id="@item.Id" class="btn btn-primary">Edit</a>
  27. <a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-danger">Delete</a>
  28. </td>
  29. </tr>
  30. }
  31. </tbody>
  32. </table>