@using EnVisage.Code.HtmlHelpers @using Microsoft.AspNet.Identity @using EnVisage.Code @{ ViewBag.Title = "Import Actuals"; }
@section Scripts { } @using (Html.BeginForm("ImportActuals", "Project", FormMethod.Post, new { @class = "panel form-horizontal", enctype = "multipart/form-data" })) { @Html.AntiForgeryToken()
@if (ViewBag.ImportResult == null) {
@Html.ValidationSummary(false, "")
@if (Html.CheckSecurityObjectPermission(Areas.ImportActuals, AccessLevel.Write)) { }
} else { if (ViewBag.ImportResult == true) {

Import completed successfully

@ViewBag.ImportLog
} else {

Import failed

@ViewBag.ImportLog
} }
}