{# templates/benchmarks/observation_items.twig #} {% extends "layouts/base.twig" %} {% block title %}{{ translations.benchmark_observation_items ?? 'Benchmark: Observation items' }}{% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block page_heading %}
{{ translations.benchmark_observation_items_subtitle ?? 'Add competitor products, match them to your products and keep prices consistent.' }}
| {{ translations.competitor_product ?? 'Competitor product' }} | {{ translations.unit ?? 'Unit' }} | {{ translations.price ?? 'Price' }} | {{ translations.match_to_my_product ?? 'Match to my product' }} | {{ translations.quality ?? 'Quality' }} | {{ translations.actions ?? 'Actions' }} |
|---|---|---|---|---|---|
|
{{ nameRaw }}
{% if notes %}
{{ notes }}
{% else %}
{{ translations.no_notes ?? 'No notes' }}
{% endif %}
{% if isPromo %}
{{ translations.promo ?? 'Promo' }}
{% endif %}
{% if myCatId %}
{{ translations.category ?? 'Category' }}:
{{ myCatName ?: ('#' ~ myCatId) }}
{% endif %}
|
{{ unitType ?: '-' }}
{% if unitSize %}
{{ unitSize }}
{% endif %}
|
{{ price is not null ? price : '-' }}
{% if isPromo and promoPrice is not null %}
{{ promoPrice }}
{% endif %}
|
{% if myProductId %}
{{ myProductName ?: (translations.matched ?? 'Matched') }}
{{ myCatName ?: (translations.category ?? 'Category') }}
|
{% if quality is not null %} {{ quality }}/10 {% else %} - {% endif %} |
|