diff --git a/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml b/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml
index f871115..fd9c0d8 100644
--- a/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml
+++ b/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml
@@ -4,14 +4,7 @@
ViewData["Title"] = "Open NCR Report | Mesa Reporting Services";
}
-
-
+
Open NCRs
diff --git a/ReportingServices.UI/Views/Shared/_BreadCrumbs.cshtml b/ReportingServices.UI/Views/Shared/_BreadCrumbs.cshtml
new file mode 100644
index 0000000..cea5cfb
--- /dev/null
+++ b/ReportingServices.UI/Views/Shared/_BreadCrumbs.cshtml
@@ -0,0 +1,26 @@
+@{
+ string myClass = "";
+}
+
+
+
+ @if (ViewContext.RouteData.Values["controller"].ToString() == "Home" && ViewContext.RouteData.Values["action"].ToString() == "Index")
+ myClass = "active disableLink";
+ - @Html.ActionLink("Home", "Index", "Home")
+ @if (ViewContext.RouteData.Values["controller"].ToString() != "Home")
+ {
+ if (ViewContext.RouteData.Values["action"].ToString() == "Index")
+ myClass = "active disableLink";
+
+ - @Html.ActionLink(APIHelperFunctions.SplitOnCamelCase(ViewContext.RouteData.Values["controller"].ToString()) + "s", "Index", ViewContext.RouteData.Values["controller"].ToString())
+ }
+ @if (ViewContext.RouteData.Values["action"].ToString() != "Index")
+ {
+ if (ViewContext.RouteData.Values["controller"].ToString() != "Home")
+ myClass = "active disableLink";
+
+ - @Html.ActionLink(APIHelperFunctions.SplitOnCamelCase(ViewContext.RouteData.Values["action"].ToString()), ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["controller"].ToString())
+ }
+
+
+
\ No newline at end of file
diff --git a/ReportingServices.UI/Views/_ViewImports.cshtml b/ReportingServices.UI/Views/_ViewImports.cshtml
index 3a4ecb3..2cf1841 100644
--- a/ReportingServices.UI/Views/_ViewImports.cshtml
+++ b/ReportingServices.UI/Views/_ViewImports.cshtml
@@ -3,4 +3,5 @@
@using ReportingServices.Shared.Models.PlanningReport
@using ReportingServices.Shared.Models.ProductionReport
@using ReportingServices.Shared.ViewModels.ProductionReport
+@using ReportingServices.Shared.HelperClasses
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
diff --git a/ReportingServices.UI/wwwroot/Assets/SLLTools.json b/ReportingServices.UI/wwwroot/Assets/SLLTools.json
index c8ea3d9..61d6446 100644
--- a/ReportingServices.UI/wwwroot/Assets/SLLTools.json
+++ b/ReportingServices.UI/wwwroot/Assets/SLLTools.json
@@ -1 +1 @@
-[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15}]
\ No newline at end of file
+[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15},{"Date":"2023-01-26T00:00:00-07:00","ASM":7,"HTR":14}]
\ No newline at end of file
diff --git a/ReportingServices.UI/wwwroot/css/site.css b/ReportingServices.UI/wwwroot/css/site.css
index 7b16ee2..401957c 100644
--- a/ReportingServices.UI/wwwroot/css/site.css
+++ b/ReportingServices.UI/wwwroot/css/site.css
@@ -104,4 +104,25 @@ body {
.tableDowntime {
color: rgb(212, 111, 35);
background-color: rgba(212, 111, 35, 0.3);
+}
+
+.disableLink a:link {
+ color: grey;
+ text-decoration: none;
+}
+
+.disableLink a:visited {
+ color: grey;
+ text-decoration: none;
+}
+
+.disableLink a:hover {
+ color: grey;
+ text-decoration: none;
+ cursor: default;
+}
+
+.disableLink a:active {
+ color: grey;
+ text-decoration: none;
}
\ No newline at end of file