Edit.cshtml
2.1 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
@model CWA.CpoOnline.Models.CpoUserViewModel
@{
ViewBag.Title = "Edit User Account";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm("edit", "users", FormMethod.Post, new { @class = "", role = "form" }))
{
@Html.AntiForgeryToken()
<hr />
@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.HiddenFor(m => m.Id)
@Html.HiddenFor(m => m.Created)
@Html.HiddenFor(m => m.LastLogin)
<div class="row">
<div class="col-sm-12 col-md-8 col-lg-6">
<div class="form-group">
@Html.LabelFor(m => m.FirstName, new { @class = "control-label" })
@Html.TextBoxFor(m => m.FirstName, new { @class = "form-control" })
</div>
<div class="form-group">
@Html.LabelFor(m => m.LastName, new { @class = "control-label" })
@Html.TextBoxFor(m => m.LastName, new { @class = "form-control" })
</div>
<div class="form-group">
@Html.LabelFor(m => m.Email, new { @class = "control-label" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
</div>
<div class="form-group">
<div class="form-check">
<label class="form-check-label">
@Html.CheckBoxFor(m => m.IsAdministrator, new { @class = "form-check-input" })
Administrator
</label>
</div>
</div>
<div class="row">
<div class="col">
<div class="row">
<div class="col">
@Html.ActionLink("Cancel", "index", "users", new { area = "" }, new { @class = "btn btn-outline-secondary" })
</div>
<div class="col-auto">
<input type="submit" class="btn btn-primary" value="Save Changes" />
</div>
</div>
</div>
</div>
<div class="row mt-4 text-sm text-muted">
<div class="col"><b>Created</b></div>
<div class="col"><b>Modified</b></div>
<div class="col"><b>Last Login</b></div>
</div>
<div class="row text-sm text-muted">
<div class="col">@Html.Partial("_localtime", Model.Created)</div>
<div class="col">@Html.Partial("_localtime", Model.Modified)</div>
<div class="col">@Html.Partial("_localtime", Model.LastLogin)</div>
</div>
</div>
</div>
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}