{% extends "base.html" %} {% block title %}Notes — {{ target.username }}{% endblock %} {% block content %}

Sysop Notes — {{ target.username }}

Private notes visible only to admins.

← Back to user
{% if notes %} {% for n in notes %}
{{ n.author.username if n.author else '?' }} {{ n.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
{{ n.note }}
{% endfor %} {% else %}
No notes yet.
{% endif %}
{% endblock %}