@model EnVisage.Models.UserModel @using EnVisage.Code.HtmlHelpers @using EnVisage.Code @{ var availableCompanies = Utils.GetCompaniesTreeAll(); var availableWfRoles = Utils.GetWorkFlowRoles(); // set Hours/Resources default value to Resources if (Guid.Empty.Equals(Model.Id)) { Model.PreferredResourceAllocation = true; } }
@using (Html.BeginForm("Edit", "User", FormMethod.Post, new { id = "frmEditUser", @class = "panel form-horizontal", onsubmit = "return beforeSubmit();" })) { @Html.AntiForgeryToken()|
|