@model EnVisage.Models.ViewBoardModel @using EnVisage.Code @{ ViewBag.Title = "Department Dashboard"; } @section stylesheets { } @section scripts { @Scripts.Render("~/bundles/angular-app-modules") }
@if (Model.Views.Count > 1) {
@Html.DropDownList("list", Model.Views.Select(x => new SelectListItem() { Value = x.Id.ToString(), Text = x.Name }), new { @onchange = "selectDepartment($(event.target).val())", @class = "form-control" })
}
@if (Model.Views.Count > 0) { //Resources (Grouped by Team) Html.Partial("~/Views/GLAccount/_resourcesList.cshtml", Model); } else { }
Skills info placeholder
@Html.Partial("../CapacityManagement/_capacityManagement", Model)