Delete.cshtml
4.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@model Maps.Entities.FlowIntensity
@{
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>FlowIntensity</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Begin)
</dt>
<dd>
@Html.DisplayFor(model => model.Begin)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DateAdd)
</dt>
<dd>
@Html.DisplayFor(model => model.DateAdd)
</dd>
<dt>
@Html.DisplayNameFor(model => model.End)
</dt>
<dd>
@Html.DisplayFor(model => model.End)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityBus)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityBus)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityBusCoupled)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityBusCoupled)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityCar)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityCar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityIncrease)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityIncrease)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityLorryThirty)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityLorryThirty)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityLorryTwelve)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityLorryTwelve)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityLorryTwelveTwenty)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityLorryTwelveTwenty)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityLorryTwentyThirty)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityLorryTwentyThirty)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityMoto)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityMoto)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityMotoSidecar)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityMotoSidecar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTotal)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTotal)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTractorOverTen)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTractorOverTen)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTractorUnderTen)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTractorUnderTen)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTruckEightFourteen)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTruckEightFourteen)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTruckFourteen)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTruckFourteen)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTruckSixEight)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTruckSixEight)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTruckTwo)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTruckTwo)
</dd>
<dt>
@Html.DisplayNameFor(model => model.IntensityTruckTwoSix)
</dt>
<dd>
@Html.DisplayFor(model => model.IntensityTruckTwoSix)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Location)
</dt>
<dd>
@Html.DisplayFor(model => model.Location)
</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>