{% extends "layout_notes.html" %} {% block title %} Notes | {{ topic_map.name }} {% endblock %} {% block content %}

Notes — {{ topic_map.name }}


{% if notes %} {% for note in notes %}
{{ note.title }} — {{ note.timestamp }}

{{ note.text|safe }}

{% if current_user.id == topic_map.user_identifier %} Edit Attach to topic Convert to topic Delete {% endif %}

{% endfor %} {% else %} {% if current_user.id == topic_map.user_identifier %}


{% endif %} {% endif %} {% if current_user.id == topic_map.user_identifier %} {% endif %}
{% endblock %}