diff options
Diffstat (limited to 'Views/Bundles/Edit.cshtml')
-rw-r--r-- | Views/Bundles/Edit.cshtml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Views/Bundles/Edit.cshtml b/Views/Bundles/Edit.cshtml new file mode 100644 index 0000000..60a2420 --- /dev/null +++ b/Views/Bundles/Edit.cshtml @@ -0,0 +1,34 @@ +@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>
\ No newline at end of file |