Changeset ae6c071 for PostgreSqlDotnetCore/Views/PetCares/Create.cshtml
- Timestamp:
- 08/15/24 20:01:13 (3 months ago)
- Branches:
- main
- Children:
- 8f8226c
- Parents:
- 2639fab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Views/PetCares/Create.cshtml
r2639fab rae6c071 37 37 </div> 38 38 </div> 39 <div class="form-group"> 40 @Html.LabelFor(model => model.start_date, htmlAttributes: new { @class = "control-label col-md-2" }) 41 <div class="col-md-10"> 42 @Html.EditorFor(model => model.start_date, new { htmlAttributes = new { @class = "form-control" } }) 43 @Html.ValidationMessageFor(model => model.start_date, "", new { @class = "text-danger" }) 44 </div> 45 </div> 39 46 40 47 … … 46 53 </div> 47 54 </div> *@ 55 @* 48 56 <div class="form-group"> 49 57 <label class="control-label col-md-2" for="vetcentersid">VetCenter:</label> … … 51 59 <select class="form-control" id="vetcentersid" name="vetcentersid"> 52 60 <option value="">Select VetCenter</option> 53 <option value=" 1">Vet Svet</option>54 <option value=" 2">Veterinarian Ambulance - Dr.Tonit</option>55 <option value=" 4">Vet In</option>61 <option value="4">Vet Svet</option> 62 <option value="5">Veterinarian Ambulance - Dr.Tonit</option> 63 <option value="6">Vet In</option> 56 64 </select> 57 65 </div> 58 66 </div> 67 *@ 59 68 69 <div class="form-group"> 70 <label class="control-label col-md-2" for="vetcentersid">VetCenter:</label> 71 <div class="col-md-10"> 72 @Html.DropDownList("vetcentersid", (SelectList)ViewBag.VetCenters, "Select VetCenter", new { @class = "form-control" }) 73 </div> 74 </div> 60 75 61 76
Note:
See TracChangeset
for help on using the changeset viewer.