{% 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.username }} | {{ 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.username }} | {{ 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.username }} | {{ score }} |
| {{ _('No evaluations yet.') }} | ||