lots of graphics
[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 <div class="entry-wrapped">
19
20 {% entry_begin entry %}
21 <div class="body">
22 {{ entry.body }}
23 </div>
24
25 {% if entry.get_type.commentable %}
26     {% render_comment_list for entry %}
27     {% entry_comment_form entry %}
28 {% endif %}
29 </div>
30 </div>
31
32 {% endblock %}