0
0
MyDarling/Views/Bundles/Edit.cshtml
Sergey Chebotar e4b4105ec0 Add edit page
2023-02-16 08:28:59 +03:00

34 lines
883 B
Plaintext

@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html>
<head>
<title>Bundles list</title>
<link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<container>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Descrition</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">@Model.Id</th>
<td>@Model.Name</a></td>
<td>@Model.Description</td>
<td>@Model.Price</td>
</tr>
</tbody>
</table>
</container>
</body>
</html>