1 {% extends "base.html" %}
2 {% load comments i18n %}
3 {% load fnp_common migdal_tags fnp_share shop_tags %}
4 {% load url from future %}
9 {% if not entry.published %}
10 <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
12 <p>{% trans "Published at" %} {{ entry.first_published_at|date:"DATE_FORMAT" }}</p>
15 <div class="entry entry-detail entry-{{ entry.type }}">
16 <div class="entry-wrapped">
18 {% entry_begin entry 1 %}
23 <p>{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN</p>
26 {% order_form_for entry.offer form %}
36 {% for inline_html in entry.inline_html %}
37 <div class="inline_html">
38 {{ inline_html|safe }}
44 <div style="clear: both;"></div>
48 {% share object.get_absolute_url object.title %}
52 <div style="clear: both"></div>
54 {% if entry.get_type.commentable %}
55 {% render_comment_list for entry %}
56 <div class="comments">
57 {% entry_comment_form entry %}