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