Files
chapter-organizer/WebApp/Components/Pages/Legend.razor
T
poprhythmandCursor 3712dba974 feat: merge event rankings and attribute badges into the page printer
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>
2026-08-30 23:03:10 -04:00

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>