@using (Html.BeginForm("Edit", "Project", FormMethod.Post, new { @class = "form-horizontal", id = "frmEditProject" }))
{
@Html.AntiForgeryToken()
@Html.HiddenFor(model => model.Id)
@Html.HiddenFor(model => model.PartForScenarioId)
@Html.HiddenFor(model => model.SaveAsCopy)
@Html.HiddenFor(model => model.ContinueToScenarios)
@Html.HiddenFor(model => model.PartsCount)
@Html.HiddenFor(model => model.InitialHasChildrenState)
@{
if (Model.UserDefinedFields == null)
{
Model.UserDefinedFields = new List();
}
}
@if (Model.UserDefinedFields.Count > 0)
{
}
@Html.ValidationSummary(false, "The project could not be saved due to the following errors:")
@if (Model == null || Model.Id == Guid.Empty)
{
Please note! System will automatically give you and all contributors of teams selected the Full Access permissions for this project. Other permissions need to be manually set up through Administration.
}
}
@if (SecurityManager.CheckSecurityObjectPermission(Areas.Scenarios, AccessLevel.Write))
{
if (!Model.HasChildren)
{