Working book shop.
[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 <div style="float:left;clear:left;">
21 <a href="{% url 'migdal_entry_info' 'regulamin-sklepu' %}">Regulamin sklepu</a>
22 </div>
23 {% endif %}
24
25
26 {% if entry.offer %}
27
28 <p>{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN</p>
29
30
31 {% order_form_for entry.offer form %}
32
33 {% endif %}
34
35
36 {{ entry.body }}
37
38
39
40
41 {% for inline_html in entry.inline_html %}
42 <div class="inline_html">
43     {{ inline_html|safe }}
44 </div>
45 {% endfor %}
46
47 </div>
48
49 <div style="clear: both;"></div>
50
51 <div class="toolbar">
52 <div class="social">
53     {% share object.get_absolute_url object.title %}
54 </div>
55 </div>
56
57 <div style="clear: both"></div>
58
59 {% if entry.get_type.commentable %}
60     {% render_comment_list for entry %}
61     <div class="comments">
62     {% entry_comment_form entry %}
63     </div>
64 {% endif %}
65 </div>
66 </div>
67 {% endblock %}
68