c101e51523868f60639f40d725eab39f9c1b144c
[prawokultury.git] / migdal / templates / migdal / entry / entry_detail.html
1 {% extends "base.html" %}
2 {% load comments %}
3 {% load migdal_tags %}
4
5
6 {% block "main_menu" %}
7     {% if entry.categories %}
8         {% main_menu 'objects' entry.categories.all %}
9     {% else %}
10         {% main_menu 'entry_type' entry.type %}
11     {% endif %}
12 {% endblock "main_menu" %}
13
14
15 {% block "body" %}
16
17 <div class="entry entry-short entry-{{ entry.type }}">
18
19 {% entry_begin entry %}
20 {{ entry.body }}
21
22 {% if entry.get_type.commentable %}
23     {% render_comment_list for entry %}
24     {% entry_comment_form entry %}
25 {% endif %}
26 </div>
27
28 {% endblock %}