{% extends "base.html" %} {% block title %}HoopScout | {{ player.full_name }}{% endblock %} {% block content %}

{{ player.full_name }}

{{ player.nominal_position.name|default:"No nominal position" }} ยท {{ player.inferred_role.name|default:"No inferred role" }}

{% if request.user.is_authenticated %} {% include "scouting/partials/favorite_button.html" with player=player is_favorite=is_favorite next_url=request.get_full_path %} {% endif %} Back to search

Summary

Nationality: {{ player.nationality.name|default:"-" }}

Origin competition: {{ player.origin_competition.name|default:"-" }}

Origin team: {{ player.origin_team.name|default:"-" }}

Birth date: {{ player.birth_date|date:"Y-m-d"|default:"-" }}

Age: {{ age|default:"-" }}

Height: {{ player.height_cm|default:"-" }} cm

Weight: {{ player.weight_kg|default:"-" }} kg

Dominant hand: {{ player.get_dominant_hand_display|default:"-" }}

Current Assignment

{% if current_assignment %}

Team: {{ current_assignment.team.name|default:"-" }}

Competition: {{ current_assignment.competition.name|default:"-" }}

Season: {{ current_assignment.season.label|default:"-" }}

Games: {{ current_assignment.games_played }}

{% else %}

No active assignment available.

{% endif %}

Aliases

    {% for alias in player.aliases.all %}
  • {{ alias.alias }}{% if alias.source %} ({{ alias.source }}){% endif %}
  • {% empty %}
  • No aliases recorded.
  • {% endfor %}

Team History

{% if season_rows %}
{% for row in season_rows %} {% endfor %}
Season Team Competition
{{ row.season.label|default:"-" }} {{ row.team.name|default:"-" }} {{ row.competition.name|default:"-" }}
{% else %}

No team history available.

{% endif %}

Career History

{% if career_entries %}
{% for entry in career_entries %} {% endfor %}
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:"-" }}
{% else %}

No career entries available.

{% endif %}

Season-by-Season Stats

{% if season_rows %}
{% for row in season_rows %} {% endfor %}
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 %}
{% else %}

No season stats available.

{% endif %}
{% endblock %}