{% extends "base.html" %} {% block title %}Товары — ЭВОСИНК{% endblock %} {% block content %}

Товары{% if group %}: {{ group.name }}{% endif %}

Экспорт CSV
{% set redirect_back %}/catalog/products?store_id={{ store.evotor_id }}{% if group %}&group_id={{ group.evotor_id }}{% endif %}{% endset %} {% if not products %}

Товары не найдены.

{% else %}
{% for product in products %} {% set mode = filter_map.get(product.evotor_id) %} {% endfor %}
Название Артикул Цена Кол-во Ед. изм. В продаже Синхронизирован Фильтр
{{ product.name }} {{ product.article_number or "—" }} {% if product.price %}{{ "%.2f"|format(product.price) }} ₽{% else %}—{% endif %} {% if product.quantity is not none %}{{ product.quantity }}{% else %}—{% endif %} {{ product.measure_name or "—" }} {% if product.allow_to_sell is none %} {% elif product.allow_to_sell %} {% else %} {% endif %} {% if product.synced_at %} {% else %} {% endif %} {% if mode == "include" %} ✓ Включено {% elif mode == "exclude" %} ✗ Исключено {% else %} — Нет правила {% endif %}
{% endif %} {% endblock %}