What this tab shows
Players / Tournaments is the player-workspace tab for tournament result rows linked to the opened player.
It does not show the tournament configuration catalog. It reads player-specific rows from public.user_tournaments, joins each row to the generated tournament instance in public.tournaments_list, and displays the tournament name, player rank, leaderboard type, ranking metric, instance end date, and matching prize configuration.
How to read it
Tournament Namecomes from the tournament instance config content, currentlyconfigs.content.en.name.Positioncomes fromuser_tournaments.stats.rank; blank means the backend did not return a rank for that player row.Typetells operators which leaderboard rule was used:Total Played GamesorSum of Bet.Ranking Metricis the backendstats.wageringvalue. The frontend displays it as EUR with two decimals forsumOfBet, and as a rounded integer count fortotalPlayedGames.Date Wonis the tournament instanceendAttimestamp formatted by the frontend. It is not a separate prize-paid timestamp.Prizeis derived in the frontend from the returned prize configuration and the player's rank.
Important label meanings
User Tournaments can mean different things in the codebase. On this player tab, the meaning is narrow: rows in public.user_tournaments for the opened player, joined to generated tournament instances.
Do not confuse this tab with:
- the main
Tournamentsmodule, which manages tournament configuration and generated tournament instances - the nested tournament participant leaderboard, which shows all participants for one tournament instance
- the Dashboard
Bonus Payoutstournament payout widget, which is a reporting surface
Known caveats
- This tab is read-only. It has no row action for recalculation or prize resend; those actions live on the tournament participant leaderboard.
- The backend endpoint does not apply a visible status filter in the player-tab code path. It returns player-linked tournament rows sorted by tournament instance
endAt DESC. - The
Prizecolumn is a display helper. It matches the player's rank against configured prize place ranges. It does not prove that a cash wallet transaction or bonus coupon assignment succeeded. - Money prizes are displayed as configured
amountEUR; player-wallet conversion and rewards-calendar payout behavior belong to the tournament prize delivery flow, not this tab.