{% extends "layouts/base.html" %} {% block title %}{{ _('Personal Notes') }} - TryoutPro{% endblock %} {% block page_title %}{{ _('Personal Notes') }}{% endblock %} {% block breadcrumb %}Home / Personal Notes{% endblock %} {% block content %}

{{ _('Add Personal Note') }}

{% if org_team %} {{ org_team.name }} {% endif %}

{{ _('These notes will only be visible to the selected player.') }}

{% if personal_notes %}

{{ _('Recent Notes') }}

{% for note in personal_notes %}
{{ note.player.username if note.player else 'Unknown Player' }} - {{ note.created_at.strftime('%B %d, %Y') if note.created_at else 'Unknown date' }} {{ note.content | nl2br if note.content else '' }} From: {{ note.coach.username if note.coach else 'Unknown Coach' }}
{% endfor %}
{% endif %} {% endblock %}