{{ player.nominal_position.name|default:"No nominal position" }} ยท {{ player.inferred_role.name|default:"No inferred role" }}
| Season | Team | Competition |
|---|---|---|
| {{ row.season.label|default:"-" }} | {{ row.team.name|default:"-" }} | {{ row.competition.name|default:"-" }} |
| Season | Team | Competition | Role | From | To |
|---|---|---|---|---|---|
| {{ entry.season.label|default:"-" }} | {{ entry.team.name|default:"-" }} | {{ entry.competition.name|default:"-" }} | {{ entry.role_snapshot.name|default:"-" }} | {{ entry.start_date|date:"Y-m-d"|default:"-" }} | {{ entry.end_date|date:"Y-m-d"|default:"-" }} |
| Season | Team | Competition | Games | MPG | PPG | RPG | APG | SPG | BPG | TOPG | FG% | 3P% | FT% | Impact |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ row.season.label|default:"-" }} | {{ row.team.name|default:"-" }} | {{ row.competition.name|default:"-" }} | {{ row.games_played }} | {% if row.mpg is not None %}{{ row.mpg|floatformat:1 }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.points }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.rebounds }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.assists }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.steals }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.blocks }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.turnovers }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.fg_pct }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.three_pct }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.ft_pct }}{% else %}-{% endif %} | {% if row.stats %}{{ row.stats.player_efficiency_rating }}{% else %}-{% endif %} |