We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c561d commit d264309Copy full SHA for d264309
1 file changed
src/Server.UI/Pages/Participants/Components/Inductions.razor
@@ -75,13 +75,19 @@
75
<MudTh>Commenced</MudTh>
76
<MudTh>Completed</MudTh>
77
<MudTh>Status</MudTh>
78
+ <MudTh>Reason</MudTh>
79
<MudTh></MudTh>
80
</HeaderContent>
81
<RowTemplate>
82
<MudTd DataLabel="P">@context.Number</MudTd>
83
<MudTd DataLabel="S">@context.StartDate.ToShortDateString()</MudTd>
84
<MudTd DataLabel="E">@(context.CompletedDate.HasValue ? context.CompletedDate.Value.ToShortDateString() : string.Empty)</MudTd>
85
<MudTd DataLabel="F">@(context.Status.Name)</MudTd>
86
+ <MudTd DataLabel="G">
87
+ <MudTooltip Text="@context.AbandonJustification">
88
+ @(context.AbandonReason?.Name)
89
+ </MudTooltip>
90
+ </MudTd>
91
<MudTd>
92
<MudFab Color="Color.Info"
93
StartIcon="@Icons.Material.Filled.AssignmentTurnedIn"
0 commit comments