@page "/"
@page "/Dashboard"
Dashboard
Dashboard
@if (stateProvider.CurrentUser is not null && approvalList is not null && !myApprovalsProcessing) {
My Active Approvals
Issue ID
Role
Assigned Date
Step
@if (context.IssueID > 0) {
@context.IssueID
}
@context.SubRoleCategoryItem
@DateTimeUtilities.GetDateAsStringMinDefault(context.AssignedDate)
@context.Step
} else {
Processing
}
@if (stateProvider.CurrentUser is not null && myMRBs is not null && !myMrbsProcessing) {
My MRBs
MRB#
Title
Submitted Date
Approval Date
Cancel Date
Completed Date
@context.MRBNumber
@context.Title
@DateTimeUtilities.GetDateAsStringMinDefault(context.SubmittedDate)
@DateTimeUtilities.GetDateAsStringMaxDefault(context.ApprovalDate)
@DateTimeUtilities.GetDateAsStringMaxDefault(context.CancelDate)
@DateTimeUtilities.GetDateAsStringMaxDefault(context.CloseDate)
} else {
Processing
}
@if (stateProvider.CurrentUser is not null && myPCRBs is not null && !myPcrbsProcessing) {
My PCRBs
PCRB#
Title
Current Step
Submitted Date
Last Updated
Completed Date
@context.PlanNumber
@context.Title
@(GetCurrentPCRBStep(context.CurrentStep))
@DateTimeUtilities.GetDateAsStringMinDefault(context.InsertTimeStamp)
@DateTimeUtilities.GetDateAsStringMinDefault(context.LastUpdateDate)
@DateTimeUtilities.GetDateAsStringMaxDefault(context.ClosedDate)
} else {
Processing
}