{% extends "layout.html" %} {% block content %}

{{ note.title }}

{% if note.visibility.value == 'Private' %}๐Ÿ”’{% elif note.visibility.value == 'Team' %}๐Ÿ‘ฅ{% else %}๐Ÿข{% endif %} {{ note.visibility.value }} By {{ note.created_by.username }} Created {{ note.created_at|format_date }} {% if note.updated_at > note.created_at %} ยท Updated {{ note.updated_at|format_date }} {% endif %} {% if note.is_pinned %} ๐Ÿ“Œ Pinned {% endif %}
Mind Map {% if note.can_user_edit(g.user) %} Edit
{% endif %} Back to Notes
{% if note.project %} {% endif %} {% if note.task %} {% endif %} {% if note.tags %}
Tags: {% for tag in note.get_tags_list() %} {{ tag }} {% endfor %}
{% endif %}
{{ note.render_html()|safe }}
{% if note.linked_notes or note.can_user_edit(g.user) %}

Linked Notes

{% if note.can_user_edit(g.user) %} {% endif %}
{% if outgoing_links or incoming_links %}
{% for link in outgoing_links %}

{{ link.target_note.title }}

โ†’ {{ link.link_type }}
{{ link.target_note.get_preview()|safe }}
{% if note.can_user_edit(g.user) %} {% endif %}
{% endfor %} {% for link in incoming_links %}

{{ link.source_note.title }}

โ† {{ link.link_type }}
{{ link.source_note.get_preview()|safe }}
{% if note.can_user_edit(g.user) %} {% endif %}
{% endfor %}
{% else %} {% endif %}
{% endif %}
{% if note.can_user_edit(g.user) %} {% endif %} {% endblock %}