{% load player_query %}

Results

{{ page_obj.paginator.count }} player{{ page_obj.paginator.count|pluralize }} found
{% if players %}
{% for player in players %} {% endfor %}
Player Nationality Pos / Role Height / Weight Games MPG PPG RPG APG
{{ 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:"-" }} {{ 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 }}
{% else %}

No players matched the current filters.

{% endif %}