source: PostgreSqlDotnetCore/Views/City/Delete.cshtml@ 2aea0fd

main
Last change on this file since 2aea0fd was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 673 bytes
RevLine 
[2aea0fd]1@model PostgreSqlDotnetCore.Models.CitiesClass
2
3@{
4 ViewBag.Title = "Delete";
5}
6
7<h2>Delete</h2>
8
9<h3>Are you sure you want to delete this?</h3>
10<div>
11 <h4>CitiesClass</h4>
12 <hr />
13 <dl class="dl-horizontal">
14 <dt>
15 @Html.DisplayNameFor(model => model.name)
16 </dt>
17
18 <dd>
19 @Html.DisplayFor(model => model.name)
20 </dd>
21
22
23
24 </dl>
25
26 @using (Html.BeginForm()) {
27 @Html.AntiForgeryToken()
28
29 <div class="form-actions no-color">
30 <input type="submit" value="Delete" class="btn btn-default" /> |
31 @Html.ActionLink("Back to List", "Index")
32 </div>
33 }
34</div>
Note: See TracBrowser for help on using the repository browser.