source: PostgreSqlDotnetCore/Views/PetCares/Delete.cshtml

main
Last change on this file was a3ce071, checked in by ElenaMoskova <elena.moskova99@…>, 4 weeks ago

changed to filling

changed in the filling order of start_date and date_ending

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[2aea0fd]1@model PostgreSqlDotnetCore.Models.Pet_CaresClass
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>Pet_CaresClass</h4>
12 <hr />
13 <dl class="dl-horizontal">
14 <dt>
15 @Html.DisplayNameFor(model => model.title)
16 </dt>
17 <dt>
18 @Html.DisplayNameFor(model => model.description)
19 </dt>
20 <dt>
[a3ce071]21 @Html.DisplayNameFor(model => model.start_date)
[2aea0fd]22 </dt>
[ae6c071]23 <dt>
[a3ce071]24 @Html.DisplayNameFor(model => model.dateending)
[ae6c071]25 </dt>
[a3ce071]26
[2aea0fd]27 <dt>
28 @Html.DisplayNameFor(model => model.usersid)
29 </dt>
30 <dt>
31 @Html.DisplayNameFor(model => model.vetcentersid)
32 </dt>
33
34
35 <dd>
36 @Html.DisplayFor(model => model.title)
37 </dd>
38 <dd>
39 @Html.DisplayFor(model => model.description)
40 </dd>
41 <dd>
[a3ce071]42 @Html.DisplayFor(model => model.start_date)
[2aea0fd]43 </dd>
[ae6c071]44 <dd>
[a3ce071]45 @Html.DisplayFor(model => model.dateending)
[ae6c071]46 </dd>
[a3ce071]47
[2aea0fd]48 <dd>
49 @Html.DisplayFor(model => model.usersid)
50 </dd>
51 <dd>
52 @Html.DisplayFor(model => model.vetcentersid)
53 </dd>
54
55
56 </dl>
57
58 @using (Html.BeginForm()) {
59 @Html.AntiForgeryToken()
60
61 <div class="form-actions no-color">
62 <input type="submit" value="Delete" class="btn btn-default" /> |
63 @Html.ActionLink("Back to List", "Index")
64 </div>
65 }
66</div>
Note: See TracBrowser for help on using the repository browser.