{% if p.image_path %}
{% elif p.image_url %}
{% else %}
Bez obrázku
{% endif %}
{{ p.name or "Bez názvu" }}
{{ p.shop }}
{% if p.price is not none %}
{{ "%.0f"|format(p.price) }} Kč
{% else %}
Cena nenalezena
{% endif %}
Přejít na produkt
Aktualizováno: {{ p.updated_at.strftime("%Y-%m-%d %H:%M") if p.updated_at else "" }}
Historie cen
{% for h in history.get(p.id, []) %}
{{ h.checked_at.strftime("%Y-%m-%d %H:%M") }}
{{ "%.0f"|format(h.price) }} Kč
{% endfor %}
{% if not history.get(p.id) %}
Zatím bez historie.
{% endif %}