{% extends "layouts/base.html" %} {% block title %}{{ _('Team Notes') }} - UdeS team manager{% endblock %} {% block page_title %}{{ _('Team Notes') }}{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}
| {{ _('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 %} |