{% load fnp_common migdal_tags fnp_share shop_tags %}
-{% block "body" %}
+{% block body %}
{% if not entry.published %}
<p class="warning">{% trans "This entry hasn't been published yet." %}</p>
+{% else %}
+ <p>{% trans "Published at" %} {{ entry.first_published_at|date:"DATE_FORMAT" }}</p>
{% endif %}
<div class="entry entry-detail entry-{{ entry.type }}">
{% entry_begin entry 1 %}
<div class="body">
-{{ entry.body }}
-
+{% if entry.offer %}
+<p>{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN</p>
-{% if entry.offer_set.all.exists %}
-{% order_form_for entry.offer_set.all.0 form %}
+{% order_form_for entry.offer form %}
{% endif %}
+{{ entry.body }}
+
+
{% for inline_html in entry.inline_html %}