Changeset 2639fab for PostgreSqlDotnetCore/Views
- Timestamp:
- 08/14/24 16:27:55 (3 months ago)
- Branches:
- main
- Children:
- ae6c071
- Parents:
- 784b3ad
- Location:
- PostgreSqlDotnetCore/Views/Products
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
PostgreSqlDotnetCore/Views/Products/Create.cshtml
r784b3ad r2639fab 48 48 </div> 49 49 </div> 50 51 <div class="form-group"> 52 @Html.LabelFor(model => model.available_quantity, htmlAttributes: new { @class = "control-label col-md-2" }) 53 <div class="col-md-10"> 54 @Html.EditorFor(model => model.available_quantity, new { htmlAttributes = new { @class = "form-control" } }) 55 <span class="input-group-addon">euro</span> 56 @Html.ValidationMessageFor(model => model.available_quantity, "", new { @class = "text-danger" }) 57 </div> 58 </div> 59 50 60 @*<div class="form-group"> 51 61 @Html.LabelFor(model => model.category, htmlAttributes: new { @class = "control-label col-md-2" }) … … 57 67 58 68 <div class="form-group"> 59 <label for="category"> Jobs:</label>69 <label for="category">Category:</label> 60 70 <select class="form-control" id="category" name="category"> 61 71 <option value="">Select category</option> -
PostgreSqlDotnetCore/Views/Products/Delete.cshtml
r784b3ad r2639fab 56 56 </dd> 57 57 58 <dt> 59 @Html.DisplayNameFor(model => model.available_quantity) 60 </dt> 61 62 <dd> 63 @Html.DisplayFor(model => model.available_quantity) 64 </dd> 65 58 66 59 67 </dl> -
PostgreSqlDotnetCore/Views/Products/Details.cshtml
r784b3ad r2639fab 55 55 </dd> 56 56 57 <dt> 58 @Html.DisplayNameFor(model => model.available_quantity) 59 </dt> 60 61 <dd> 62 @Html.DisplayFor(model => model.available_quantity) 63 </dd> 64 57 65 </dl> 58 66 </div> -
PostgreSqlDotnetCore/Views/Products/Edit.cshtml
r784b3ad r2639fab 54 54 </div> 55 55 </div> 56 <div class="form-group"> 57 @Html.LabelFor(model => model.available_quantity, htmlAttributes: new { @class = "control-label col-md-2" }) 58 <div class="col-md-10"> 59 @Html.EditorFor(model => model.available_quantity, new { htmlAttributes = new { @class = "form-control" } }) 60 @Html.ValidationMessageFor(model => model.available_quantity, "", new { @class = "text-danger" }) 61 </div> 62 </div> 56 63 57 64 <div class="form-group">
Note:
See TracChangeset
for help on using the changeset viewer.