]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/note_detail.html
f9d1b0101a60dacc909f22bb12c5a043c024c3f9
[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 %}