@model EnVisage.Models.TeamboardModel @using EnVisage.Code @{ ViewBag.Title = "Team Dashboard"; } @section stylesheets { } @section scripts { }
@if (Model.Teams.Count > 1) {
@Html.DropDownList("list", Model.Teams.Select(x => new SelectListItem() { Value = x.Id.ToString(), Text = x.Name }), new { @onchange = "selectTeam($(event.target).val())", @class = "form-control", @ng_model = "teamId", @ng_change = "teamChanged()" }) @* *@
}
@if (Model.Teams.Count > 0) { Html.Partial("~/Views/PeopleResource/_resourcesList.cshtml", Model.Teams.First()); } else { }
Skills info placeholder
@*@Html.DropDownList("capacityExpCat", Utils.GetTeamExpenditureCategories(Guid.Parse("63cba2d8-e92c-489c-9eec-ef17a9d6319e")), new { @id = "capacityExpCat", @class = "form-control" })*@
to
Full time
Default View
Name Grand Totals {{header.Title}}
{{ header.IsMonth ? '' : header.Title}}
{{ row.ExpCatName || 'empty' }} {{ calendarFilters.IsTableModeQuantity ? (row.GrandTotalQuantity || 0 | number:2) : (row.GrandTotalCost || 0 | currency) }} {{ calendarFilters.IsTableModeQuantity ? (col || 0 | number:2) : (col || 0 | currency) }} {{ calendarFilters.IsTableModeQuantity ? (col || 0 | number:2) : (col || 0 | currency) }}
{{ row.ExpCatName || 'empty' }} {{ calendarFilters.IsTableModeQuantity ? (row.GrandTotalQuantity || 0 | number:2) : (row.GrandTotalCost || 0 | currency) }} {{ calendarFilters.IsTableModeQuantity ? (col || 0 | number:2) : (col || 0 | currency) }}
{{data.ScenarioCalendar[0].ExpCatName}} {{calendarFilters.IsTableModeQuantity ? (data.ScenarioCalendar[0].GrandTotalQuantity || 0 | number:2) : (data.ScenarioCalendar[0].GrandTotalCost || 0 | currency)}} {{ calendarFilters.IsTableModeQuantity ? (col || 0 | number:2) : (col || 0 | currency) }}
@Html.Partial("../CapacityManagement/_capacityManagement", Model)
@{ Html.RenderPartial("_chart"); }