Delete.cshtml
2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@model Maps.Entities.Road
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Delete</title>
</head>
<body>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>Road</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.AcceptTransferDoc)
</dt>
<dd>
@Html.DisplayFor(model => model.AcceptTransferDoc)
</dd>
<dt>
@Html.DisplayNameFor(model => model.AcceptanceDoc)
</dt>
<dd>
@Html.DisplayFor(model => model.AcceptanceDoc)
</dd>
<dt>
@Html.DisplayNameFor(model => model.AuthorityAct)
</dt>
<dd>
@Html.DisplayFor(model => model.AuthorityAct)
</dd>
<dt>
@Html.DisplayNameFor(model => model.EconomicValue)
</dt>
<dd>
@Html.DisplayFor(model => model.EconomicValue)
</dd>
<dt>
@Html.DisplayNameFor(model => model.HistoricalBackground)
</dt>
<dd>
@Html.DisplayFor(model => model.HistoricalBackground)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Index)
</dt>
<dd>
@Html.DisplayFor(model => model.Index)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LawDoc)
</dt>
<dd>
@Html.DisplayFor(model => model.LawDoc)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Length)
</dt>
<dd>
@Html.DisplayFor(model => model.Length)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Name)
</dt>
<dd>
@Html.DisplayFor(model => model.Name)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Value)
</dt>
<dd>
@Html.DisplayFor(model => model.Value)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">Back to List</a>
</div>
</form>
</div>
</body>
</html>