Welcome to Notes!

Built with Django {{ django_version }}.
Add a new note {# Show visible fields #} {% for field in form.visible_fields %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{% endfor %} {# Include hidden fields #} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% csrf_token %}
{% for note in notes %}

{{ note.title }}

{{ note.content }}

{% if note.attach %} {% endif %} {% if note.checklist_items %} {% endif %}
{% endfor %}