{% load player_query %}
{{ search_metric_semantics }}
{% if search_has_errors %}Search filters are invalid.
{% for field in search_form %} {% for error in field.errors %}{{ field.label }}: {{ error }}
{% endfor %} {% endfor %} {% for error in search_form.non_field_errors %}{{ error }}
{% endfor %}| Player | Nationality | Pos / Role | Height / Weight | Best Eligible Games | Best Eligible MPG | Best Eligible PPG | Best Eligible RPG | Best Eligible APG | Best Eligible SPG | Best Eligible BPG | Best Eligible TOV | Best Eligible FG% | Best Eligible 3P% | Best Eligible FT% | {% if request.user.is_authenticated %}Watchlist | {% endif %}
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ player.full_name }} | {{ player.nationality.name|default:"-" }} | {{ player.nominal_position.code|default:"-" }} / {{ player.inferred_role.name|default:"-" }} | {{ player.height_cm|default:"-" }} / {{ player.weight_kg|default:"-" }} | {% if player.games_played_value is not None %}{{ player.games_played_value|floatformat:0 }}{% else %}-{% endif %} | {% if player.mpg_value is not None %}{{ player.mpg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.ppg_value is not None %}{{ player.ppg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.rpg_value is not None %}{{ player.rpg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.apg_value is not None %}{{ player.apg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.spg_value is not None %}{{ player.spg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.bpg_value is not None %}{{ player.bpg_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.tov_value is not None %}{{ player.tov_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.fg_pct_value is not None %}{{ player.fg_pct_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.three_pct_value is not None %}{{ player.three_pct_value|floatformat:1 }}{% else %}-{% endif %} | {% if player.ft_pct_value is not None %}{{ player.ft_pct_value|floatformat:1 }}{% else %}-{% endif %} | {% if request.user.is_authenticated %}{% if player.id in favorite_player_ids %} {% include "scouting/partials/favorite_button.html" with player=player is_favorite=True next_url=request.get_full_path %} {% else %} {% include "scouting/partials/favorite_button.html" with player=player is_favorite=False next_url=request.get_full_path %} {% endif %} | {% endif %}