{% if current_user.is_authenticated %}
UdeS team manager
{{ current_user.username[:2] | upper }}
{{ current_user.username }}
{{ current_user.role | capitalize }}
Dashboard
Tryouts
Calendar
{% if current_user.can_evaluate() %}
Evaluations
{% endif %} {% if current_user.role == 'player' %}
My Team(s)
{% else %}
Manage Teams
{% endif %} {% if current_user.can_manage_users() %}
Manage Users
{% endif %} {% if current_user.role == 'player' %}
My Notes
{% endif %} {% if current_user.role == 'coach' %}
Notes & One on One
{% endif %}
Contracts
My Profile
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 %}
UdeS team manager
UdeS team manager
{% block auth_content %}{% endblock %}
{% endif %} {% block scripts %}{% endblock %}