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

{{ note.content|safe }}

{{ note.noter.name }} on {{ note.timestamp.strftime('%d %b %Y @ %H:%M') }}
{% endfor %} {% else %}

This user doesn't have any notes.

{% endif %}
{% endblock content %}