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

Add Note for Match: {{ match.title }}

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

This note will be linked to this match 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 %}