{% extends "layouts/base.html" %} {% block title %}{{ _('Add Personal Note') }} - TryoutPro{% endblock %} {% block page_title %}{{ _('Add Personal Note') }}{% endblock %} {% block breadcrumb %} Home / Tryouts {% if context_type == 'tryout' %} / {{ tryout.title }} / Add Note {% elif context_type == 'match' %} / {{ tryout.tryout.title }} / Add Note {% else %} / Add Note {% endif %} {% endblock %} {% block content %}

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

{% if context_type == 'tryout' %}

Context: Tryout - {{ tryout.title }}

{% elif context_type == 'match' %}

Context: Match - {{ match.title }}

{% endif %}
{% if context_type == 'tryout' %} {% elif context_type == 'match' %} {% endif %}
{% if context_type != 'tryout' and context_type != 'match' %}
{% endif %} {% if team_notes %}
{% for note in team_notes %}
{{ note.created_at.strftime('%Y-%m-%d') }} - {{ note.coach.username }}:

{{ note.content[:200] }}{% if note.content|length > 200 %}...{% endif %}

{% endfor %}
{% endif %}
Cancel
{% endblock %} {% block styles %} {% endblock %}