{% load player_query %}
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 | Origin | Height / Weight | Games | MPG | PPG | RPG | APG | {% 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.origin_competition.name|default:"-" }}
{% if player.origin_team %} {{ player.origin_team.name }} {% endif %}
|
{{ player.height_cm|default:"-" }} / {{ player.weight_kg|default:"-" }} | {{ player.games_played_value|floatformat:0 }} | {{ player.mpg_value|floatformat:1 }} | {{ player.ppg_value|floatformat:1 }} | {{ player.rpg_value|floatformat:1 }} | {{ player.apg_value|floatformat:1 }} | {% 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 %}