{% extends "layouts/base.html" %} {% block title %}Dashboard - TryoutPro{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}
Total Users
Players
Total Tryouts
Evaluations
Active Tryouts
Upcoming
| Name | Role | Joined |
|---|---|---|
| {{ u.full_name }} | {{ u.role }} | {{ u.created_at.strftime('%m/%d/%Y') }} |
| Title | Date | Status |
|---|---|---|
| {{ t.title }} | {{ t.date.strftime('%m/%d/%Y') }} | {{ t.status }} |
| Match | Tryout | Date & Time | Status |
|---|---|---|---|
| {{ match.title }} | {{ match.tryout.title }} | {{ match.date.strftime('%m/%d/%Y') }} {% if match.start_time %} at {{ match.start_time.strftime('%I:%M %p') }}{% endif %} | {{ match.status }} |
My Tryouts
Active
My Evaluations
| Title | Date | Status | Players | Actions |
|---|---|---|---|---|
| {{ t.title }} | {{ t.date.strftime('%m/%d/%Y') }} | {{ t.status }} | {{ t.registrations.count() }} | View |
| No tryouts yet. Create one | ||||
| Match | Tryout | Date & Time | Status |
|---|---|---|---|
| {{ match.title }} | {{ match.tryout.title }} | {{ match.date.strftime('%m/%d/%Y') }} {% if match.start_time %} at {{ match.start_time.strftime('%I:%M %p') }}{% endif %} | {{ match.status }} |
Evaluations Done
Pending
| Player | Tryout | Score | Date |
|---|---|---|---|
| {{ e.player.full_name }} | {{ e.tryout.title }} | {{ e.overall_score }} | {{ e.created_at.strftime('%m/%d/%Y') }} |
My Tryouts
| Tryout | Match | Date & Time | Opponent |
|---|---|---|---|
| {{ item.tryout.title }} | {{ item.match.title }} | {{ item.match.date.strftime('%m/%d/%Y') }} {% if item.match.start_time %} at {{ item.match.start_time.strftime('%I:%M %p') }}{% endif %} | {% if item.match.match_type == 'team_vs_team' and item.team %} {% if item.match.team1_id == item.team.id %} vs {{ item.match.team2.name if item.match.team2 else 'TBD' }} {% else %} vs {{ item.match.team1.name if item.match.team1 else 'TBD' }} {% endif %} {% else %} - {% endif %} |
No upcoming matches yet.
{% endif %}| Tryout | Date | Status |
|---|---|---|
| {{ r.tryout.title }} | {{ r.tryout.date.strftime('%m/%d/%Y') }} | {{ r.status }} |
Total Players
Total Evaluations
| # | Player | Avg Score |
|---|---|---|
| {{ loop.index }} | {{ player.full_name }} | {{ score }} |
| No evaluations yet. | ||