Welcome to Notes!
Hello,
{{ user }}
-
Logout
Add a new note
Title:
Content:
Checklist items:
Save note
{% for note in notes %}
{{ note.title }}
{{ note.content }}
{% if note.checklist_items %}
{% for item in note.checklist_items %}
{{item.get().title}}
{% endfor %}
{% endif %}
{% endfor %}