{% extends 'base.html' %} {% load static %} {% block title %}{{ t.title_market }} — PickkerMarket{% endblock %} {% block content %}

{{ t.market_title }}

{{ t.market_subtitle }}

{% if is_b2b %}{{ t.market_b2b_hero_badge }}{% endif %}
{% include 'market/_market_ticker.html' %}
{% if picker_session.is_authenticated and picker_session.role == 'customer' %}
{% if is_b2b %}{{ t.market_business_mode_on }}{% else %}{{ t.market_business_mode_off }}{% endif %}
{% csrf_token %} {{ t.market_personal }} {{ t.market_business }}
{% endif %}
{% if is_b2b %}{{ t.market_wholesale_catalog }}{% else %}{{ t.market_available_now }}{% endif %}

{% if is_b2b %}{{ t.market_bulk_pricing }}{% else %}{{ t.market_browse_produce }}{% endif %}

{% if tied_markets %} {% endif %} {% if tied_vendors %} {% endif %} {% if tied_regions %} {% endif %} {% if has_customer_location %} {% endif %} {% if selected_category or search_query or selected_market_id or selected_vendor_key or selected_region_id or sort_near or radius_km %} {{ t.market_clear_filters }} {% endif %}
{% if selected_market %}

{% if selected_market.logo_url %}{{ selected_market.name }}{% else %}{{ selected_market.name }}{% endif %} {% if selected_market_categories %} · {{ t.market_known_for_prefix }} {{ selected_market_categories|join:", " }}{% endif %}

{% endif %} {% if selected_vendor %}

{% if selected_vendor.logo_url %}{{ selected_vendor.name }}{% else %}{{ selected_vendor.name }}{% endif %} · {{ selected_vendor.vendor_type|title }}

{% endif %}
{% for product in products %}
{% if product.image_url %} {{ product.display_name }} {% else %} {{ product.display_name }} {% endif %} {% if is_b2b %}B2B{% endif %}

{{ product.display_name }}

{{ product.category_display }} · {{ product.per_unit_display }} {% if product.market_name %}{% if product.market_logo_url %}{% endif %}{{ product.market_name|truncatechars:14 }}{% endif %} {% if product.vendor_name %}{% if product.vendor_logo_url %}{% endif %}{{ product.vendor_name|truncatechars:14 }}{% endif %} {% if product.region_display %}{{ product.region_display }}{% endif %} {% if product.quality_grade %}{{ product.quality_grade }}{% endif %}
TSh {{ product.effective_price|floatformat:0 }} {% if product.price_badge and product.price_badge.change_pct != None %} {% if product.price_badge.direction == 'up' %}▲{% elif product.price_badge.direction == 'down' %}▼{% else %}—{% endif %} {{ product.price_badge.change_pct }}% {% endif %} {% if product.bulk_savings_pct %} {{ t.market_save_prefix }} {{ product.bulk_savings_pct }}{{ t.market_save_suffix }} {% endif %}
{% if product.min_qty > 1 %}

{{ t.market_sold_in_lots }} {{ product.min_qty_unit_display }}

{% endif %} {% if picker_session.is_authenticated and picker_session.role == 'customer' %}
{% csrf_token %} {% if product.active_measures %} {% endif %}
{% else %}

{{ t.market_log_in_to_purchase }}

{% endif %}
{% empty %}

{{ t.market_no_produce }}

{% endfor %}

{{ t.market_cant_find }} {{ t.market_get_in_touch }} {{ t.market_and_help }}

{% if picker_session.role == 'customer' %} {% if cart_count %}{{ cart_count }}{% endif %} {% include 'market/_chat_widget.html' %} {% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}