{% extends "layouts/base.html" %} {% block title %}My Notes - TryoutPro{% 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.full_name 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.full_name 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 %}