Interview notes can print each student's ranked events and a shared attribute legend from the same catalog as the ranking index, without leftover table markup or collapsed answer space. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
266 B
Plaintext
15 lines
266 B
Plaintext
@using Core.Printing
|
|
@using WebApp.Models
|
|
<MudPaper>
|
|
<h3>Legend</h3>
|
|
|
|
<MudContainer>
|
|
<ul>
|
|
@foreach (var mark in EventAttributeMarks.LegendItems)
|
|
{
|
|
<li>@mark.Symbol - @mark.Label</li>
|
|
}
|
|
</ul>
|
|
</MudContainer>
|
|
</MudPaper>
|