]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/note_detail.html
views: add page to list notes by tag
[chloro.git] / chloro / phyll / templates / phyll / note_detail.html
1 {% extends "phyll/base.html" %}
2 {% load i18n %}
3
4 {% block body %}
5 <h1>{{ object.title }}</h1>
6 <div>{{ object.text|safe }}</div>
7 {% endblock %}
8
9 {% block bottom-actions %}
10 <a href="edit/">{% trans "Edit" %}</a>
11 <a href="delete/">{% trans "Delete" %}</a>
12 {% endblock %}