Changeset 8f8226c for PostgreSqlDotnetCore/Views/PetCares/Edit.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/PetCares/Edit.cshtml
rae6c071 r8f8226c 48 48 </div> 49 49 50 <div class="form-group"> 50 <div class="form-group"> 51 @Html.LabelFor(model => model.vetcentersid, htmlAttributes: new { @class = "control-label col-md-2" }) 52 <div class="col-md-10"> 53 @Html.DropDownListFor(model => model.vetcentersid, (SelectList)ViewBag.VetCenters, "Select VetCenter", new { @class = "form-control" }) 54 @Html.ValidationMessageFor(model => model.vetcentersid, "", new { @class = "text-danger" }) 55 </div> 56 </div> 57 58 59 @*<div class="form-group"> 51 60 @Html.LabelFor(model => model.vetcentersid, htmlAttributes: new { @class = "control-label col-md-2" }) 52 61 <div class="col-md-10"> … … 55 64 </div> 56 65 </div> 66 *@ 67 @* 68 <div class="form-group"> 69 <label class="control-label col-md-2" for="vetcentersid">VetCenter:</label> 70 <div class="col-md-10"> 71 @Html.DropDownList("vetcentersid", (SelectList)ViewBag.VetCenters, "Select VetCenter", new { @class = "form-control" }) 72 </div> 73 </div> 74 *@ 57 75 58 76
Note:
See TracChangeset
for help on using the changeset viewer.