{% extends "base.html" %} {% import "macros.html" as macros with context %} {% block content %}
{{ gettext('Add User Note') }}
{% if user.notes %} {% for note in user.notes %}

{{ note.content|safe }}

{{ gettext('%(noter)s on %(timestamp)s', noter=note.noter.name, timestamp=note.timestamp|datetimeformat) }}
{% endfor %} {% else %}

{{ gettext("This user doesn't have any notes.") }}

{% endif %}
{% endblock content %}