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