{% extends "base.html" %} {% block title %}{{ block.super }}: {% if product.category.parent %}{{ product.category.parent.title }}: {% endif %}{{ product.category.title }}: {{ product.title }}{% endblock %} {% load cms_tags i18n get_placeholder_tag thumbnail %} {% block content %} {% get_placeholder category.top as top %} {% get_placeholder category.bottom as bottom %} {% if top %}
{{ top }}
{% endif %}
{{ product.title }}

{{ product.title }}

{{ product.body|linebreaks }}
{% for info in product.info_set.all %}
{{ info.title }}
{% trans "Weight" %} {{ info.weight }}
{% trans "Package Quantity" %} {{ info.package_quantity }}
{% trans "Barcode" %} {{ info.barcode }}
{% trans "Shelf Life" %} {{ info.shelf_life }}
{% trans "Parcel Quantity" %} {{ info.parcel_quantity }}
{% trans "Parcel Weight" %} {{ info.parcel_weight }}
{% trans "Parcel Size" %} {{ info.parcel_size }}
{% endfor %}
{% trans "Protein" %} {% trans "Total Fat" %} {% trans "Saturated Fat" %} {% trans "Energy" %}
{{ product.protein }} {{ product.total_fat }} {{ product.saturated_fat }} {{ product.energy }}
{% if product.recipe_set.all %} {% with product.recipe_set.all|random as recipe %}

{% trans "Bu ürünle pişirin" %}

{{ recipe.title }}

{% endwith %} {% endif %}
{{ product.cooking }}
{{ product.storage }}
{{ product.tricks }}
{{ product.notes }}
{% if bottom %}
{{ bottom }}
{% endif %} {% endblock %}