{% extends "layouts/base.html" %} {% block title %}{{ _('My Notes') }} - UdeS team manager{% endblock %} {% block page_title %}{{ _('My Notes') }}{% endblock %} {% block breadcrumb %}Home / One on One / My Notes{% endblock %} {% block content %}

{{ _('Personal Notes') }}

{% if org_team %} Team: {{ org_team.name }} {% endif %}
{% if personal_notes %} {% for note in personal_notes %}
Note from {{ note.coach.username if note.coach else 'Unknown Coach' }} {{ note.content | nl2br }}
{% if note.match_id and note.match %} Match: {{ note.match.title }} {% endif %} {% if note.team_id and note.team %} Team: {{ note.team.name }} {% endif %} {% if note.tryout_id and note.tryout %} Tryout: {{ note.tryout.title }} {% endif %}

Added: {{ note.created_at.strftime('%B %d, %Y at %I:%M %p') }}

{% endfor %} {% else %}

{{ _('No personal notes have been added yet. Your coach may provide individual feedback here.') }}

{% endif %}

{{ _('Team Notes') }}

{% if org_team %} {{ org_team.name }} {% endif %}
{% if team_notes %} {% for note in team_notes %}
Coach: {{ note.coach.username if note.coach else 'Unknown Coach' }} {{ note.content | nl2br }}

Updated: {{ note.updated_at.strftime('%B %d, %Y at %I:%M %p') }}

{% endfor %} {% else %}

{{ _('No team notes have been added yet. Your coach will post improvement suggestions here.') }}

{% endif %}
{{ _('Request One on One Session') }}
{% endblock %}