{% extends "note_base.html" %} {% load markdownify %} {% block title %}Notes{% endblock %} {% block content %} {% for note in notes_page %}

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

Number of notes: {{ notes_count }}

{% endblock %}