X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/ee38ff5eec83ee81d518125d2894c631da45c3f9..f99300eecfd92abe9b7b442456694950fb3c54fa:/notes/templates/note_list.html?ds=inline diff --git a/notes/templates/note_list.html b/notes/templates/note_list.html index e996fb2..f1f5ee5 100644 --- a/notes/templates/note_list.html +++ b/notes/templates/note_list.html @@ -1,20 +1,23 @@ {% extends "note_base.html" %} -{% load markdownify %} {% block title %}Notes{% endblock %} {% block content %} - {% 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" }}

-
+ {% 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