{% extends "layouts/base.html" %} {% block title %}One on One - TryoutPro{% endblock %} {% block page_title %}One on One{% endblock %} {% block breadcrumb %}Home / One on One{% endblock %} {% block content %}

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 %}

Personal Notes

{% if coach %} From: {{ coach.username }} {% endif %}
{% if personal_notes %} {% for note in personal_notes %}
Note from {{ note.coach.username if note.coach else 'Unknown Coach' }} {{ note.content | nl2br }}

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 %}

Request One on One Session

{% if coach %} Coach: {{ coach.username }} {% endif %}
{% if coach %}
{% else %}

You need to be assigned to a team with a coach to request a One on One session.

{% endif %}
{% if coach %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}