X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/f253eb82624c454150771efb46b6d34595eb6183..05088b5302c2a9f89229d043345821105b1797dd:/notes/templates/note_list.html?ds=inline diff --git a/notes/templates/note_list.html b/notes/templates/note_list.html index 9f1554c..5647f9c 100644 --- a/notes/templates/note_list.html +++ b/notes/templates/note_list.html @@ -1,19 +1,23 @@ {% extends "note_base.html" %} -{% load markdownify %} {% block title %}Notes{% endblock %} {% block content %} -

Notes

- {% for note in notes %} -

{{ note.title }}

-

ID: {{ note.id }}

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

Link: View

-

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

- {% empty %} -

No notes

- {% endfor %} + {% for note in notes_page %} + {% include "note.html" %} + {% empty %} +

No notes

+ {% endfor %} -

Number of notes: {{ notes_count }}

+ {% if page_count > 1 %} + + {% endif %} {% endblock %} \ No newline at end of file