source: PostgreSqlDotnetCore/Views/Jobs/Delete.cshtml@ 8f8226c

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

init commit Elena

  • Property mode set to 100644
File size: 1.0 KB
Line 
1@model PostgreSqlDotnetCore.Models.JobsClass
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>JobsClass</h4>
12 <hr />
13 <dl class="dl-horizontal">
14 <dt>
15 @Html.DisplayNameFor(model => model.description)
16 </dt>
17
18 <dd>
19 @Html.DisplayFor(model => model.description)
20 </dd>
21 <dt>
22 @Html.DisplayNameFor(model => model.predictedsalery)
23 </dt>
24
25 <dd>
26 @Html.DisplayFor(model => model.predictedsalery)
27 </dd>
28
29 <dt>
30 @Html.DisplayNameFor(model => model.vetcentersid)
31 </dt>
32
33 <dd>
34 @Html.DisplayFor(model => model.vetcentersid)
35 </dd>
36
37 </dl>
38
39 @using (Html.BeginForm()) {
40 @Html.AntiForgeryToken()
41
42 <div class="form-actions no-color">
43 <input type="submit" value="Delete" class="btn btn-dark" /> |
44 @Html.ActionLink("Back to List", "Index")
45 </div>
46 }
47</div>
Note: See TracBrowser for help on using the repository browser.