5b6fc736016bd409f787d2539b5a64f91aa42f0b
[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 {% else %}
12     <p>{% trans "Published at" %} {{ entry.first_published_at|date:"DATE_FORMAT" }}</p>
13 {% endif %}
14
15 <div class="entry entry-detail entry-{{ entry.type }}">
16 <div class="entry-wrapped">
17
18 {% entry_begin entry 1 %}
19 <div class="body">
20
21 {% if entry.offer %}
22
23 <p>{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN</p>
24
25
26 {% order_form_for entry.offer form %}
27
28 {% endif %}
29
30
31 {{ entry.body }}
32
33
34
35
36 {% for inline_html in entry.inline_html %}
37 <div class="inline_html">
38     {{ inline_html|safe }}
39 </div>
40 {% endfor %}
41
42 </div>
43
44 <div style="clear: both;"></div>
45
46 <div class="toolbar">
47 <div class="social">
48     {% share object.get_absolute_url object.title %}
49 </div>
50 </div>
51
52 <div style="clear: both"></div>
53
54 {% if entry.get_type.commentable %}
55     {% render_comment_list for entry %}
56     <div class="comments">
57     {% entry_comment_form entry %}
58     </div>
59 {% endif %}
60 </div>
61 </div>
62 {% endblock %}
63