Player Management
++ Manage {playerCount} player{playerCount !== 1 ? 's' : ''} in the system +
+| + Player Name + | ++ Current Elo + | ++ Games + | ++ Record + | ++ Win Rate + | ++ User Account + | ++ Actions + | +
|---|---|---|---|---|---|---|
|
+
+
+
+
+ {player.name.charAt(0).toUpperCase()}
+
+
+
+
+
+ {player.name}
+
+ |
+ + {player.currentElo} + | ++ {player.gamesPlayed} + | ++ {player.wins}-{player.losses} + | ++ {player.gamesPlayed > 0 + ? ((player.wins / player.gamesPlayed) * 100).toFixed(1) + '%' + : 'N/A'} + | ++ {player.user ? ( + + {player.user.email} + + ) : ( + No account + )} + | ++ + View Profile + + | +