Scout Search
{% if request.user.is_authenticated %}
Signed in as {{ request.user.username }} |
View shortlist |
{% else %}
Log in
{% endif %}
{% if request.user.is_authenticated %}
Saved Searches
{% for saved_search in saved_searches %}
-
{{ saved_search.name }}
{% if saved_search.is_active %}
(active)
{% endif %}
{% empty %}
- No saved searches yet.
{% endfor %}
{% else %}
Log in to save searches
{% endif %}
Results ({{ total_results }})
Sort: {{ form.sort.value|default:"name_asc" }} | Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if active_filters %}
Active filters:
{% for filter in active_filters %}
- {{ filter.label }}: {{ filter.value }}
{% endfor %}
{% endif %}
{% for player in players %}
-
{{ player.full_name }}
({{ player.position }})
{% if request.user.is_authenticated %}
{% if player.is_favorite %}
Shortlisted
{% else %}
{% endif %}
{% else %}
Log in to shortlist
{% endif %}
{% if player.matching_context %}
Match context:
{{ player.matching_context.season.name }}
| Team: {{ player.matching_context.team.name|default:"-" }}
| Competition: {{ player.matching_context.competition.name|default:"-" }}
{% if player.matching_context.stats %}
PTS {{ player.matching_context.stats.points|default:"-" }} |
AST {{ player.matching_context.stats.assists|default:"-" }} |
STL {{ player.matching_context.stats.steals|default:"-" }} |
TOV {{ player.matching_context.stats.turnovers|default:"-" }} |
BLK {{ player.matching_context.stats.blocks|default:"-" }}
{% endif %}
{% endif %}
{% empty %}
{% if has_submitted_search %}
- No players found for the current search filters.
{% else %}
- No players available yet.
{% endif %}
{% endfor %}
{% if page_obj.paginator.num_pages > 1 %}
{% endif %}