{% 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 selected_category or search_query %} {{ t.market_clear_filters }} {% 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 }}

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 %}