{% extends "base.html" %} {% load comments i18n %} {% load fnp_common migdal_tags fnp_share shop_tags %} {% block body %} {% if not entry.published %}

{% trans "This entry hasn't been published yet." %}

{% else %}

{% trans "Published at" %} {{ entry.first_published_at|date:"DATE_FORMAT" }}

{% endif %}
{% entry_begin entry 1 %}
{% if entry.offer %}

{% trans "Price" %}: {{ entry.offer.price|floatformat:"-2" }} PLN

{% order_form_for entry.offer form %} {% endif %} {{ entry.body }} {% for inline_html in entry.inline_html %}
{{ inline_html|safe }}
{% endfor %}
{% if entry.get_type.commentable %} {% render_comment_list for entry %}
{% entry_comment_form entry %}
{% endif %}
{% endblock %}