{% extends 'base.html' %} {% from '_macros.html' import product_card, star_rating with context %} {% block title %}{{ product.title }} ยท TradeHub{% endblock %} {% block content %}
Home{{ product.category_label }}{{ product.title }}
{# Left: Image gallery #}
{% if product.images and product.images | length > 1 %} {% endif %}
{# Right: Info + CTAs #}

{{ product.title }}

${{ '%.2f' % product.price }}
{{ product.condition_label }} {% if product.status != 'active' %} {{ product.status | title }} {% endif %}
{{ product.created_at | time_ago }}
{% if product.location %}
{{ product.location }}
{% endif %}
{{ product.views or 0 }} views
{{ product.wishlist_count }} likes
{% if product.description %}
{{ product.description }}
{% endif %} {# Action buttons #}
{% if current_user.is_authenticated and current_user.id == product.seller_id %} Edit listing {% if product.status == 'active' %}
{% endif %} {% elif product.status == 'active' %} Chat Buy now {% if current_user.is_authenticated %} {% endif %} {% else %} {% endif %}
{# Seller card #}
{{ product.seller.username }}
{{ product.seller.username }} {% if product.seller.rating_count > 0 %} {{ star_rating(product.seller.rating_avg) }} {{ product.seller.rating_avg }} ({{ product.seller.rating_count }} reviews) {% else %} No reviews yet {% endif %} · Joined {{ product.seller.created_at | time_ago }}
View profile
{# Reviews #} {% if reviews %}

Reviews

{% for review in reviews %}
{{ review.reviewer.username }}
{{ review.reviewer.username }} {{ star_rating(review.rating, 14) }} {{ review.created_at | time_ago }}
{% if review.content %}

{{ review.content }}

{% endif %}
{% endfor %}
{% endif %} {# Related products #} {% if related %}

You may also like

{% for p in related %} {{ product_card(p) }} {% endfor %}
{% endif %}
{# Lightbox #} {% endblock %}