Welcome to Notes!
{{ note_count }} notes stored so far!
Hello,
{{ user }}
Logout
Shrink images
Add a new note
Title:
Content:
Checklist items:
Attached file:
Save note
{% for note in notes %}
{{ note.title }}
{{ note.content }}
{% if note.files %}
{% for file in note.files %} {% if file.get().thumbnail_url %}
{% else %}
{{ file.get().name }}
{% endif %} {% endfor %}
{% endif %} {% if note.checklist_items %}
{% for item in note.checklist_items %}
{{item.title}}
{% endfor %}
{% endif %}
{% endfor %}