{% extends "layouts/base.html" %} {% block title %}Notes - UdeS team manager{% endblock %} {% block page_title %}Notes{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}
| Player | Date | Time | Discussion Points | Status | Actions |
|---|---|---|---|---|---|
| {{ req.player.username if req.player else 'Unknown' }} | {{ 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 == 'pending' %} {% elif req.status == 'rejected' and req.coach_rejection_message %} Reason: {{ req.coach_rejection_message[:50] }}{% if req.coach_rejection_message|length > 50 %}...{% endif %} {% endif %} |
No One on One requests from your players yet.
{% endif %}| Last Updated | Content Preview |
|---|---|
| {{ note.updated_at.strftime('%B %d, %Y at %I:%M %p') if note.updated_at else 'Unknown date' }} | {{ note.content[:100] if note.content else '' }}{% if note.content and note.content|length > 100 %}...{% endif %} |