X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/3fb7b9dea69252f64ee82967dfca97baf1b02df7..083b6653f96bcbbea1328090e4775b055ab01c03:/notes/templates/note_list.html diff --git a/notes/templates/note_list.html b/notes/templates/note_list.html index fb2da33..e77bce0 100644 --- a/notes/templates/note_list.html +++ b/notes/templates/note_list.html @@ -1,26 +1,21 @@ -{% load markdownify %} - +{% extends "note_base.html" %} - -
-ID: {{ note.id }}
-Link: View
-Date: {{ note.created_at|date:"Y-m-d H:i" }}
- {% empty %} -No notes
- {% endfor %} - -Number of notes: {{ notes_count }}
+{% block content %} + {% for note in notes_page %} + {% include "note.html" %} + {% empty %} +No notes
+ {% endfor %} - - +