{% extends "layouts/base.html" %} {% block title %}Team Notes - UdeS team manager{% 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 %}