Changeset 8f8226c for PostgreSqlDotnetCore/Views/Pets/Index.cshtml
- Timestamp:
- 08/20/24 15:04:19 (3 months ago)
- Branches:
- main
- Children:
- 6782104
- Parents:
- ae6c071
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Views/Pets/Index.cshtml
rae6c071 r8f8226c 12 12 <table class="table"> 13 13 <tr> 14 <th> 15 @Html.DisplayNameFor(model => model.name) 16 </th> 14 17 15 18 <th> … … 36 39 @foreach (var item in Model) { 37 40 <tr> 41 <td> 42 @Html.DisplayFor(modelItem => item.name) 43 </td> 38 44 <td> 39 45 @Html.DisplayFor(modelItem => item.color)
Note:
See TracChangeset
for help on using the changeset viewer.