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

My One on One Requests

{% if my_requests %}
{% for req in my_requests %} {% endfor %}
Coach Team Date Time Discussion Points Status Coach Response
{{ req.coach.full_name if req.coach else 'Unknown Coach' }} {{ req.team.name if req.team else '—' }} {{ 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_options %}
{% else %}

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

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}