{% extends 'base.html' %} {% block title %} Vyhledavani | Eshop s chatbotem {% endblock %} {% block body %}

Výsledky pro hledání "{{ search_text }}"


{% if ("oste" in search_text) or (search_text == "") %}
pictureOfProduct

Kategorie postele

{% endif %} {% if ("idl" in search_text) or (search_text == "") %}
pictureOfProduct

Kategorie židle

{% endif %} {% if ("tol" in search_text) or ("tů" in search_text) or ("tu" in search_text) or (search_text == "") %}
pictureOfProduct

Kategorie stoly

{% endif %} {% if ("resl" in search_text) or ("řesl" in search_text) or (search_text == "") %}
pictureOfProduct

Kategorie křesla

{% endif %} {% if ("kri" in search_text) or ("kři" in search_text) or ("kří" in search_text) or ("krí" in search_text) or (search_text == "") %}
pictureOfProduct

Kategorie skříně

{% endif %}
{% for x in furnitures %} {% if (search_text|upper in x.name|upper) or (search_text|upper in x.type_furniture|upper) or (search_text|int == x.id)%}
pictureOfProduct

{{ x.name }}

{% if x.sale == 0 %}

{{ x.price }} Kč

{% else %}

{{ x.price }} Kč

{{ (x.price*(100-x.sale)/100)|round|int }} Kč

{% endif %} {% if x.stored == 0 %}

Daný produkt bohužel nemáme skladem.

{% elif x.stored == 1 %}

Máme skladem ještě {{ x.stored }} kus.

{% elif x.stored > 1 and x.stored < 5 %}

Máme skladem ještě {{ x.stored }} kusy.

{% else %}

Máme skladem ještě {{ x.stored }} kusů.

{% endif %}
{% endif %} {% endfor %}
{% if warning_mess == True %}

Pokud jste nenašli, co jste hledali zkuste svůj vyhledavací text zjednodušit.

{% endif %} {% endblock %}