Gave ability to set ooo status to Admin as well.

This commit is contained in:
Daniel Wathen
2023-03-02 12:24:07 -07:00
parent a2b2e04f1f
commit e0893031dd
10 changed files with 11 additions and 15 deletions

View File

@ -59,6 +59,10 @@
{
<li>@Html.ActionLink("Admin", "Index", "Admin")</li>
}
@if ((bool)@Session[GlobalVars.IS_MANAGER])
{
<li>@Html.ActionLink("Manager", "Index", "Manager")</li>
}
</ul>
@Html.Partial("_LoginPartial")
</div>