Changeset a3ce071
- Timestamp:
- 08/31/24 02:28:00 (2 months ago)
- Branches:
- main
- Parents:
- 99d0ecc
- Location:
- PostgreSqlDotnetCore/Views/PetCares
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Views/PetCares/Create.cshtml
r99d0ecc ra3ce071 30 30 </div> 31 31 </div> 32 <div class="form-group"> 33 @Html.LabelFor(model => model.start_date, htmlAttributes: new { @class = "control-label col-md-2" }) 34 <div class="col-md-10"> 35 @Html.EditorFor(model => model.start_date, new { htmlAttributes = new { @class = "form-control" } }) 36 @Html.ValidationMessageFor(model => model.start_date, "", new { @class = "text-danger" }) 37 </div> 38 </div> 32 39 <div class="form-group"> 33 40 @Html.LabelFor(model => model.dateending, htmlAttributes: new { @class = "control-label col-md-2" }) … … 37 44 </div> 38 45 </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> 46 46 47 47 48 -
PostgreSqlDotnetCore/Views/PetCares/Delete.cshtml
r99d0ecc ra3ce071 19 19 </dt> 20 20 <dt> 21 @Html.DisplayNameFor(model => model.start_date) 22 </dt> 23 <dt> 21 24 @Html.DisplayNameFor(model => model.dateending) 22 25 </dt> 23 <dt> 24 @Html.DisplayNameFor(model => model.start_date) 25 </dt> 26 26 27 <dt> 27 28 @Html.DisplayNameFor(model => model.usersid) … … 39 40 </dd> 40 41 <dd> 42 @Html.DisplayFor(model => model.start_date) 43 </dd> 44 <dd> 41 45 @Html.DisplayFor(model => model.dateending) 42 46 </dd> 43 <dd> 44 @Html.DisplayFor(model => model.start_date) 45 </dd> 47 46 48 <dd> 47 49 @Html.DisplayFor(model => model.usersid) -
PostgreSqlDotnetCore/Views/PetCares/Edit.cshtml
r99d0ecc ra3ce071 32 32 </div> 33 33 </div> 34 <div class="form-group"> 35 @Html.LabelFor(model => model.start_date, htmlAttributes: new { @class = "control-label col-md-2" }) 36 <div class="col-md-10"> 37 @Html.EditorFor(model => model.start_date, new { htmlAttributes = new { @class = "form-control" } }) 38 @Html.ValidationMessageFor(model => model.start_date, "", new { @class = "text-danger" }) 39 </div> 40 </div> 34 41 35 42 <div class="form-group"> … … 40 47 </div> 41 48 </div> 42 <div class="form-group"> 43 @Html.LabelFor(model => model.start_date, htmlAttributes: new { @class = "control-label col-md-2" }) 44 <div class="col-md-10"> 45 @Html.EditorFor(model => model.start_date, new { htmlAttributes = new { @class = "form-control" } }) 46 @Html.ValidationMessageFor(model => model.start_date, "", new { @class = "text-danger" }) 47 </div> 48 </div> 49 49 50 50 51 <div class="form-group"> -
PostgreSqlDotnetCore/Views/PetCares/Index.cshtml
r99d0ecc ra3ce071 20 20 </th> 21 21 <th> 22 @Html.DisplayNameFor(model => model.start_date) 23 </th> 24 <th> 22 25 @Html.DisplayNameFor(model => model.dateending) 23 26 </th> 24 <th> 25 @Html.DisplayNameFor(model => model.start_date) 26 </th> 27 27 28 <th> 28 29 @Html.DisplayNameFor(model => model.usersid) … … 49 50 </td> 50 51 <td> 52 @Html.DisplayFor(modelItem => item.start_date) 53 </td> 54 <td> 51 55 @Html.DisplayFor(modelItem => item.dateending) 52 56 </td> 53 <td> 54 @Html.DisplayFor(modelItem => item.start_date) 55 </td> 57 56 58 <td> 57 59 @Html.DisplayFor(modelItem => item.usersid)
Note:
See TracChangeset
for help on using the changeset viewer.