Back to search
{{ player.full_name }}
Position: {{ player.position }}
Nationality: {{ player.nationality|default:"-" }}
Birth date: {{ player.birth_date|default:"-" }}
Height (cm): {{ player.height_cm|default:"-" }}
Weight (kg): {{ player.weight_kg|default:"-" }}
Wingspan (cm): {{ player.wingspan_cm|default:"-" }}
Roles:
{% for role in player.roles.all %}
{{ role.name }}{% if not forloop.last %}, {% endif %}
{% empty %}
-
{% endfor %}
Specialties:
{% for specialty in player.specialties.all %}
{{ specialty.name }}{% if not forloop.last %}, {% endif %}
{% empty %}
-
{% endfor %}
Season Contexts
{% for context in contexts %}
-
{{ context.season.name }}
| Team: {{ context.team.name|default:"-" }}
| Competition: {{ context.competition.name|default:"-" }}
{% if context.stats %}
PTS {{ context.stats.points|default:"-" }} |
AST {{ context.stats.assists|default:"-" }} |
STL {{ context.stats.steals|default:"-" }} |
TOV {{ context.stats.turnovers|default:"-" }} |
BLK {{ context.stats.blocks|default:"-" }}
eFG% {{ context.stats.efg_pct|default:"-" }} |
TS% {{ context.stats.ts_pct|default:"-" }} |
+/- {{ context.stats.plus_minus|default:"-" }} |
ORtg {{ context.stats.offensive_rating|default:"-" }} |
DRtg {{ context.stats.defensive_rating|default:"-" }}
{% else %}
No stats available for this context.
{% endif %}
{% empty %}
- No season contexts found.
{% endfor %}