]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/note_detail.html
425ee2da38e13dbcf0779fd472c2e97691f53622
[chloro.git] / chloro / phyll / templates / phyll / note_detail.html
1 {% extends "phyll/base.html" %}
2 {% load i18n %}
3
4 {% block content-class %}post{% endblock %}
5
6 {% block body %}
7 <div>
8 <h2>{{ object.title }}</h2>
9 <div>{{ object.text|safe }}</div>
10 </div>
11 {% endblock %}
12
13 {% block bottom-actions %}
14 <a href="edit/">{% trans "Edit" %}</a>
15 <a href="delete/">{% trans "Delete" %}</a>
16 {% endblock %}