]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/note_detail.html
4c919c210dc846e07a21189e81fc3e0dee33c907
[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
11 <div class="meta">{{ object.creation_timestamp|date:"j E Y, H:i"|lower }}</div>
12 </div>
13 {% endblock %}
14
15 {% block bottom-actions %}
16 <a href="edit/">{% trans "Edit" %}</a>
17 <a href="delete/">{% trans "Delete" %}</a>
18 {% endblock %}