7bb506e25271f0ad38ab3126f99903b91291168b
[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 {% load url from future %}
5
6
7 {% block "body" %}
8
9 {% if not entry.published %}
10     <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
11 {% endif %}
12
13 <div class="entry entry-detail entry-{{ entry.type }}">
14 <div class="entry-wrapped">
15
16 {% entry_begin entry 1 %}
17 <div class="body">
18
19 {% if entry.offer %}
20
21 <p>{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN</p>
22
23
24 {% order_form_for entry.offer form %}
25
26 {% endif %}
27
28
29 {{ entry.body }}
30
31
32
33
34 {% for inline_html in entry.inline_html %}
35 <div class="inline_html">
36     {{ inline_html|safe }}
37 </div>
38 {% endfor %}
39
40 </div>
41
42 <div style="clear: both;"></div>
43
44 <div class="toolbar">
45 <div class="social">
46     {% share object.get_absolute_url object.title %}
47 </div>
48 </div>
49
50 <div style="clear: both"></div>
51
52 {% if entry.get_type.commentable %}
53     {% render_comment_list for entry %}
54     <div class="comments">
55     {% entry_comment_form entry %}
56     </div>
57 {% endif %}
58 </div>
59 </div>
60 {% endblock %}
61