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

My One on One Requests

{% if my_requests %}
{% for req in my_requests %} {% endfor %}
Date Time Discussion Points Status Coach Response
{{ req.date.strftime('%b %d, %Y') }} {{ req.start_time.strftime('%I:%M %p') }} - {{ req.end_time.strftime('%I:%M %p') }} {{ req.points or 'N/A' }} {% if req.status == 'pending' %} Pending {% elif req.status == 'approved' %} Approved {% elif req.status == 'rejected' %} Rejected {% endif %} {% if req.status == 'approved' %} Session confirmed! {% elif req.status == 'rejected' %} {% if req.coach_rejection_message %} {{ req.coach_rejection_message }} {% else %} Coach is unavailable {% endif %} {% else %} Awaiting coach response... {% endif %}
{% else %}

You haven't made any One on One requests yet.

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