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

{{ _('Team Improvement Notes') }}

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

{{ _('These notes will be visible to all players on your team.') }}

{% if team_notes %}

{{ _('Note History') }}

{% for note in team_notes %} {% endfor %}
{{ _('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 %}
{% endif %} {% endblock %}