{% extends 'base.html' %} {% block content %}

{{ notes|length }} Notes (new):

{% for note in notes %}
{{ note.title }}

{{ note.body }}

Created at: {{ note.created_at.strftime('%Y/%m/%d %H:%M') }} {% if note.updated_at %} Updated at: {{ note.updated_at.strftime('%Y/%m/%d %H:%M') }} {% endif %} Edit
{{ delete_form.csrf_token }} {{ delete_form.submit(class='btn', onclick='return confirm("Are you sure?")') }}
{% endfor %} {% endblock %}