{% extends "layouts/base.html" %} {% block title %}Evaluations - TryoutPro{% endblock %} {% block page_title %}Evaluations{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %} {% if current_user.role == 'president' and player_scores %}
Avg: {{ data.avg }} / {{ data.count }} evals
| 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 |
||||||||||