@model MileageTraker.Web.ViewModels.User.EditUserViewModel
@{
ViewBag.Title = "Edit User";
}
@{ Html.RenderPartial("BackToUsers"); }
@Html.Partial("_StatusMessage")
@ViewBag.Title
@using (Html.BeginForm("Edit", "User", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
{
@Html.Partial("_ValidationSummary")
}
@Html.ActionLink("Details", "Details", new { id = Model.UserId }, new { @class = "btn" })