{% extends "layouts/base.html" %} {% block title %}Add Note from Tryout - TryoutPro{% endblock %} {% block page_title %}Add Note from Tryout{% endblock %} {% block breadcrumb %}Home / Tryouts / {{ tryout.title }} / Add Note{% endblock %} {% block content %}

Add Note for Tryout: {{ tryout.title }}

{{ tryout.date.strftime('%m/%d/%Y') }}

This note will be linked to this tryout and visible to the selected player.

{% if team_notes %}

Team Notes Reference

{% for note in team_notes %}
{{ note.coach.full_name if note.coach else 'Unknown Coach' }} {{ note.content | nl2br }}
{% endfor %}
{% endif %} {% endblock %}