Changeset 99d0ecc for PostgreSqlDotnetCore/Views
- Timestamp:
- 08/30/24 02:20:42 (3 months ago)
- Branches:
- main
- Children:
- a3ce071
- Parents:
- e90ba32
- Location:
- PostgreSqlDotnetCore/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Views/PetCares/Edit.cshtml
re90ba32 r99d0ecc 56 56 </div> 57 57 58 <div class="form-group"> 59 @Html.LabelFor(model => model.pet_id, htmlAttributes: new { @class = "control-label col-md-2" }) 60 <div class="col-md-10"> 61 @Html.DropDownListFor(model => model.pet_id, (SelectList)ViewBag.Pets, "Select Pet", new { @class = "form-control" }) 62 @Html.ValidationMessageFor(model => model.pet_id, "", new { @class = "text-danger" }) 63 </div> 64 </div> 58 65 59 66 @*<div class="form-group"> -
PostgreSqlDotnetCore/Views/VetCenter/Index.cshtml
re90ba32 r99d0ecc 34 34 @Html.DisplayNameFor(model => model.workinghours) 35 35 </th> 36 @* 36 37 <th> 37 38 @Html.DisplayNameFor(model => model.description) 38 39 </th> 40 *@ 39 41 <th> 40 42 @Html.DisplayNameFor(model => model.phonenumber) … … 64 66 @Html.DisplayFor(modelItem => item.workinghours) 65 67 </td> 66 <td>68 @* <td> 67 69 @Html.DisplayFor(modelItem => item.description) 68 70 </td> 69 71 *@ 70 72 <td> 71 73 @Html.DisplayFor(modelItem => item.phonenumber)
Note:
See TracChangeset
for help on using the changeset viewer.