{% if current_user.is_authenticated %}
TryoutPro
{{ current_user.full_name[:2] | upper }}
{{ current_user.full_name }}
{{ current_user.role | capitalize }}
Dashboard
Tryouts
Calendar
{% if current_user.can_evaluate() %}
Evaluations
{% endif %}
Teams
{% if current_user.can_manage_users() %}
Manage Users
{% endif %}
My Profile
{% if current_user.role == 'player' %}
One on One
My Notes
{% endif %} {% if current_user.role == 'coach' %}
Availability
Notes
{% endif %}
Contracts
Logout
{% block page_title %}Dashboard{% endblock %}
{% block breadcrumb %}{% endblock %}
{% block header_actions %}{% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
×
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% else %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
×
{% endfor %} {% endif %} {% endwith %}
TryoutPro
Team Tryout Management System
{% block auth_content %}{% endblock %}
{% endif %} {% block scripts %}{% endblock %}