{% load player_query %}

Results

{{ page_obj.paginator.count }} player{{ page_obj.paginator.count|pluralize }} found
{% if request.user.is_authenticated %} {% include "scouting/partials/save_search_form.html" %} {% endif %} {% if players %}
{% if request.user.is_authenticated %}{% endif %} {% for player in players %} {% if request.user.is_authenticated %} {% endif %} {% endfor %}
Player Nationality Pos / Role Origin Height / Weight Games MPG PPG RPG APGWatchlist
{{ 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 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 %}
{% else %}

No players matched the current filters.

{% endif %}