{% extends "layouts/base.html" %} {% block title %}Evaluations - TryoutPro{% endblock %} {% block page_title %}Evaluations{% endblock %} {% block breadcrumb %}Home / Evaluations{% endblock %} {% block content %} {% if current_user.role == 'president' and player_scores %}
{% for pid, data in player_scores.items() %}

{{ data.player.full_name[:12] }}

Avg: {{ data.avg }} / {{ data.count }} evals

{% endfor %}
{% endif %}

{% if current_user.role == 'player' %} My Evaluations {% else %} All Evaluations {% endif %}

{% for eval in evaluations %} {% else %} {% endfor %}
Tryout Player Evaluator Speed Agility Technique Teamwork Attitude Overall Position Date
{{ eval.tryout.title }} {{ eval.player.full_name }} {{ eval.evaluator.full_name }} {{ eval.speed_score or '-' }} {{ eval.agility_score or '-' }} {{ eval.technique_score or '-' }} {{ eval.teamwork_score or '-' }} {{ eval.attitude_score or '-' }} {{ eval.overall_score or '-' }} {{ eval.position_recommendation or 'N/A' }} {{ eval.created_at.strftime('%m/%d/%Y') }}

No evaluations yet

{% endblock %}