{% extends "layouts/base.html" %} {% block title %}{{ _('One on One') }} - UdeS team manager{% 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 %}