@using TaikoWebUI.Utilities; Play History @if (Items != null && Items.Count > 0) { @Localizer["Play Time"] @Localizer["Difficulty"] @Localizer["Crown"] @Localizer["Rank"] @Localizer["Score"] @Localizer["Good"] @Localizer["Ok"] @Localizer["Bad"] @Localizer["Drumroll"] @Localizer["Max Combo"] @context.PlayTime.ToString(Localizer["DateFormat"]) @context.Difficulty @(ScoreUtils.GetCrownText(context.Crown)) @(ScoreUtils.GetRankText(context.ScoreRank)) @context.Score @context.GoodCount @context.OkCount @context.MissCount @context.DrumrollCount @context.ComboCount } else { @Localizer["No play history found."] } @code { [Parameter] public List Items { get; set; } = new List(); private const string IconStyle = "width:25px; height:25px;"; }