<tournament-details>

  • module
bitballs/components/tournament/details

{Module}

 

Provides an overview of the games, teams, rounds, and courts that make up a tournament.

<tournament-details {is-admin} {tournament-id} />

Creates a game table organized by rounds/courts and a player table organized by teams.

Parameters

  1. is-admin {Boolean}

    Configures whether or not admin specific features are enabled.

  2. tournament-id {Number}

    The id of the Tournament model that will be used.

To create a <tournament-details> element pass the Tournament id like:

<tournament-details
    {tournament-id}="app.tournamentId" />

Example