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

{{ note.title }}

{% if note.is_file_based and note.file_type == 'document' and note.original_filename.endswith('.pdf') %}
100%
Download PDF {% elif note.is_image %} Download {% else %} {% if note.can_user_edit(g.user) %} Edit {% endif %} Mind Map {% endif %} {% if note.can_user_edit(g.user) %} {% endif %}
{% if note.folder %} {{ note.folder }} {% endif %} {% if note.tags %} {% for tag in note.get_tags_list() %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %} {{ note.created_by.username }} {% if note.updated_at > note.created_at %} Updated {{ note.updated_at|format_date }} {% else %} Created {{ note.created_at|format_date }} {% endif %} {% if note.visibility.value == 'Private' %} {% elif note.visibility.value == 'Team' %} {% else %} {% endif %} {{ note.visibility.value }}
{% if note.project or note.task or note.tags %}
{% endif %}
{% if note.is_file_based and note.file_type == 'document' and note.original_filename.endswith('.pdf') %}
{% elif note.is_image %}
{{ note.title }}
{% else %}
{{ note.render_html()|safe }}
{% endif %}
{% if outgoing_links or incoming_links 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.target_note.get_preview(100) }}

{{ link.target_note.visibility.value }} {{ link.target_note.updated_at.strftime('%b %d, %Y') }}
{% if note.can_user_edit(g.user) %} {% endif %}
{% endfor %} {% for link in incoming_links %}

{{ link.source_note.title }}

{{ link.source_note.get_preview(100) }}

{{ link.source_note.visibility.value }} {{ link.source_note.updated_at.strftime('%b %d, %Y') }}
{% if note.can_user_edit(g.user) %} {% endif %}
{% endfor %}
{% else %}

No linked notes yet.

{% endif %}
{% endif %}
{% if note.can_user_edit(g.user) %} {% endif %} {% endblock %}