Basic book shop support.
[prawokultury.git] / prawokultury / templates / migdal / entry / publications / entry_detail.html
1 {% extends "base.html" %}
2 {% load comments i18n %}
3 {% load fnp_common migdal_tags fnp_share shop_tags %}
4
5
6 {% block "body" %}
7
8 {% if not entry.published %}
9     <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
10 {% endif %}
11
12 <div class="entry entry-detail entry-{{ entry.type }}">
13 <div class="entry-wrapped">
14
15 {% entry_begin entry 1 %}
16 <div class="body">
17 {{ entry.body }}
18
19
20
21
22 {% if entry.offer_set.all.exists %}
23
24 {% order_form_for entry.offer_set.all.0 form %}
25
26 {% endif %}
27
28
29
30
31 {% for inline_html in entry.inline_html %}
32 <div class="inline_html">
33     {{ inline_html|safe }}
34 </div>
35 {% endfor %}
36
37 </div>
38
39 <div style="clear: both;"></div>
40
41 <div class="toolbar">
42 <div class="social">
43     {% share object.get_absolute_url object.title %}
44 </div>
45 </div>
46
47 <div style="clear: both"></div>
48
49 {% if entry.get_type.commentable %}
50     {% render_comment_list for entry %}
51     <div class="comments">
52     {% entry_comment_form entry %}
53     </div>
54 {% endif %}
55 </div>
56 </div>
57 {% endblock %}
58