{% extends "layouts/base.html" %} {% block title %}{{ _('One on One') }} - UdeS team manager{% endblock %} {% block page_title %}{{ _('One on One') }}{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}
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 %}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 %}| {{ _('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 %} |
{{ _('You haven\'t made any One on One requests yet.') }}
{% endif %}{{ _('You need to be assigned to a team with a coach to request a One on One session.') }}
{% endif %}