X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/ae03458e871011aea691e3d67b577f60362f481d..4f1c1d964f6606082652c873ca309e79f1f6dd5e:/notes/templates/note_list.html?page=%7B%7B%20page.number%20%7D%7D diff --git a/notes/templates/note_list.html b/notes/templates/note_list.html index ffc256a..e77bce0 100644 --- a/notes/templates/note_list.html +++ b/notes/templates/note_list.html @@ -1,20 +1,15 @@ {% extends "note_base.html" %} -{% load markdownify %} {% block title %}Notes{% endblock %} {% block content %} {% for note in notes_page %} -
-

{{ note.title }}

-
{{ note.content|linebreaksbr|markdownify }}
-

Date: {{ note.created_at|date:"Y-m-d H:i" }}

-
+ {% include "note.html" %} {% empty %}

No notes

{% endfor %} -