Welcome to Notes!
Built with Django {{ django_version }}.
{% for note in notes %}
{{ note.title }}
{{ note.content }}
{% if note.attach %}
{% endif %}
{% if note.checklist_items %}
{% for item in note.checklist_items.all %}
-
{{item.title}}
{% endfor %}
{% endif %}
{% endfor %}