]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_detail.html
Use template inheritance
[pcdenotes.git] / notes / templates / note_detail.html
1 {% extends "note_base.html" %}
2 {% load markdownify %}
3
4 {% block title %}{{ note.title }}{% endblock %}
5
6 {% block content %}
7 <h1>{{ note.title }}</h1>
8
9 <div>{{ note.content|linebreaksbr|markdownify }}</div>
10
11 <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
12 {% endblock %}

patrick-canterino.de