Ignore:
Timestamp:
08/14/24 16:27:55 (7 weeks ago)
Author:
ElenaMoskova <elena.moskova99@…>
Branches:
main
Children:
ae6c071
Parents:
784b3ad
Message:

Update with triggers

Location:
PostgreSqlDotnetCore/Views/Products
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • PostgreSqlDotnetCore/Views/Products/Create.cshtml

    r784b3ad r2639fab  
    4848        </div>
    4949    </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   
    5060    @*<div class="form-group">
    5161            @Html.LabelFor(model => model.category, htmlAttributes: new { @class = "control-label col-md-2" })
     
    5767
    5868    <div class="form-group">
    59         <label for="category">Jobs:</label>
     69        <label for="category">Category:</label>
    6070        <select class="form-control" id="category" name="category">
    6171            <option value="">Select category</option>
  • PostgreSqlDotnetCore/Views/Products/Delete.cshtml

    r784b3ad r2639fab  
    5656        </dd>
    5757
     58        <dt>
     59            @Html.DisplayNameFor(model => model.available_quantity)
     60        </dt>
     61
     62        <dd>
     63            @Html.DisplayFor(model => model.available_quantity)
     64        </dd>
     65
    5866
    5967    </dl>
  • PostgreSqlDotnetCore/Views/Products/Details.cshtml

    r784b3ad r2639fab  
    5555        </dd>
    5656
     57        <dt>
     58            @Html.DisplayNameFor(model => model.available_quantity)
     59        </dt>
     60
     61        <dd>
     62            @Html.DisplayFor(model => model.available_quantity)
     63        </dd>
     64
    5765    </dl>
    5866</div>
  • PostgreSqlDotnetCore/Views/Products/Edit.cshtml

    r784b3ad r2639fab  
    5454        </div>
    5555    </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>
    5663
    5764    <div class="form-group">
Note: See TracChangeset for help on using the changeset viewer.