{% extends "base.html" %} {% block title %}My Notes - Notes App{% endblock %} {% block content %}

My Notes

+ Create New Note
{% if notes %}
{% for note in notes %}
{{ note.title }}
Created: {{ note.created_at.strftime('%Y-%m-%d %H:%M') }} {% if note.updated_at != note.created_at %} | Updated: {{ note.updated_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}
View Edit
{% endfor %}
{% else %}

No notes yet!

Create your first note to get started.

Create Your First Note
{% endif %} {% endblock %}