@using EnVisage.Code @using EnVisage.Models @model ForecastDashboardOptionsModel @{ ViewBag.Title = "Dashboard"; var allScenarioGroups = Utils.GetScenarioGroup().Where(item => !item.Text.Equals("Default")); } @section Stylesheets { @Styles.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_STYLES_KENDO_PATH, "kendo-commonstyles")) @Styles.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_STYLES_BASE_PATH, "prevu-dashboardstyles")) } @section Scripts { @Scripts.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_SCRIPTS_BASE_PATH, "kendo-grid")) @Scripts.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_SCRIPTS_BASE_PATH, "amcharts-scripts")) @Scripts.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_SCRIPTS_BASE_PATH, "prevu-dashboardpage")) } @section pagemenu { @Html.Partial("~/Views/ForecastDashboard/_pageMenu.cshtml") } @Html.Partial("~/Views/ForecastDashboard/_filterPanel.cshtml", Model)