{% extends "base.html" %} {% block extra_head %} {{ product.title }} — {{ get_plugin_setting('minishop', 'shop_name', 'Magazin Online') }} {% if product.featured_image %} {% endif %} {% endblock %} {% block content %}
{% if product.featured_image %} {{ product.title }} {% else %}
📦
{% endif %}
{% if product.gallery_images and product.gallery_images|length > 0 %}
{% if product.featured_image %} {% endif %} {% for img in product.gallery_images %} {% endfor %}
{% endif %} {% if product.video_url %}
🎬 Prezentare Video
{% if 'youtube.com' in product.video_url or 'youtu.be' in product.video_url %} {% set yt_id = product.video_url.split('v=')[-1].split('&')[0].split('/')[-1] %} {% else %} {% endif %}
{% endif %}
{% if product.product_type == 'digital' %} {{ t_shop('digital_badge', '⚡ Produs Digital') }} {% else %} {{ t_shop('physical_badge', '📦 Produs Fizic') }} {% endif %} {% if product.category_name %} {{ product.category_name }} {% endif %} {% if post_header_meta_html %} {{ post_header_meta_html|safe }} {% endif %}

{{ product.title }}

{% set avg_int = rating_summary.average_rating|round|int %} {% for i in range(1, 6) %} {% if i <= avg_int %}★{% else %}☆{% endif %} {% endfor %}
{{ rating_summary.average_rating }} ({{ rating_summary.review_count }} recenzii)
{{ t_shop('final_price', 'Preț final') }}:
{% if product.old_price and product.old_price > product.price %} {% set discount = ((product.old_price - product.price) / product.old_price * 100)|round|int %} {{ "%.2f"|format(product.old_price) }} {{ product.currency }} {% if product.price > 0 %} {{ "%.2f"|format(product.price) }} {{ product.currency }} {% else %} 0.00 {{ product.currency }} {{ t_shop('free_badge', '🎁 GRATUIT') }} {% endif %} 🔥 -{{ discount }}% {{ t_shop('discount_label', 'REDUCERE') }} {% else %} {% if product.price > 0 %} {{ "%.2f"|format(product.price) }} {{ product.currency }} {% else %} {{ t_shop('free_badge', '🎁 GRATUIT') }} (0.00 {{ product.currency }}) {% endif %} {% endif %}
{% if product.short_description %}
{{ product.short_description }}
{% endif %}
{{ t_shop('place_order', '🛒 Plasează Comanda') }}
{% if product.product_type == 'physical' %}
{% endif %} {% if product.price > 0 %}
{% if product.product_type == 'physical' %}
{% endif %}
{% else %} {% endif %}
{% if product.description_html %}

{{ t_shop('product_description', '📄 Descriere și Detalii Produs') }}

{{ product.description_html|safe }}
{% endif %} {% if post_article_footer_html %}
{{ post_article_footer_html | safe }}
{% endif %}

⭐ {{ t_shop('reviews_title', 'Recenzii și Păreri Produs') }} ({{ rating_summary.review_count }})

{% if reviews and reviews|length > 0 %}
{% for r in reviews %}
{% if r.user_avatar %} {% else %}
{{ r.user_name[0]|upper }}
{% endif %} {{ r.user_name }}
{% for i in range(1, 6) %} {% if i <= r.rating %}★{% else %}☆{% endif %} {% endfor %}

{{ r.comment }}

{% endfor %}
{% else %}
Fii primul care lasă o recenzie pentru acest produs!
{% endif %}
{% endblock %}