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

patrick-canterino.de