Different background color for new year
The goal is to have a visual reminder when we are working in new year scheduling (instead of current year). There have been times we have inadvertently changed something in current year when we thought we were in new year. Have a different color background would prevent that.
I would like a visible distinction between new and current year to prevent errors to making changes.
-
Tim Drescher commented
I agree, it should be part of Skyward. As a work-around, you can add this to SkyCoder on the Future Course Master and Section Master pages.
Future Course Master
//9889 is current year, 9049 is next year = these are skyward menu path ID's
if(document.getElementById("HomePageMenuID").value=="9049") {
document.getElementById('pageOuterWrap').style.background = "#00FF00"; //green
}Future Section Master
//10112 is current year, 10113is next year = these are skyward menu path ID's
if(document.getElementById("HomePageMenuID").value=="10113") {
document.getElementById('pageOuterWrap').style.background = "#00FF00"; //green
}