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

{% if note %}Edit Note{% else %}Create Note{% endif %}

{{ note.content if note else '' }}
Cancel

Preview

Start typing to see the preview...

{% if note and note.linked_notes %}

Linked Notes

{% for link in note.linked_notes %}
{{ link.target_note.title }} {{ link.link_type }}
{% endfor %}
{% endif %}
{% endblock %}