Available Coaches
-
{% for coach in available_coaches %}
-
{{ coach.user.username }}
Specialization: {{ coach.specialization }}
About: {{ coach.user.about }}
Gender: {{ coach.user.gender }}
Location: {{ coach.user.city }}, {{ coach.user.state }}
{% if coach.profile_picture %}{% endif %}
Experience: {{ coach.experience_years }} years
Certifications: {{ coach.certifications }}
Availability: {{ coach.availability }}
{% empty %}
No coaches found matching your search.
{% endfor %}Active Players Seeking Coaching
-
{% for player in active_players %}
-
{{ player.user.username }}
Rating: {{ player.rating }}
About: {{ player.user.about }}
Gender: {{ player.user.gender }}
Location: {{ player.user.city }}, {{ player.user.state }}
{% if player.profile_picture %}{% endif %}
Specialization: {{ player.specialization }}
View Videos
{% empty %}
No players found matching your search.
{% endfor %}