{% extends "base.html" %} {% block title %}Товары — {{ store.name }} — ЭВОСИНК{% endblock %} {% block content %}
| Название | Артикул | Цена | Остаток | Ед. | Продаётся | Обновлено |
|---|---|---|---|---|---|---|
| {{ p.name }} | {{ p.article_number or '—' }} | {% if p.price is not none %}{{ p.price | price }}{% else %}—{% endif %} | {% if p.quantity is not none %}{{ p.quantity }}{% else %}—{% endif %} | {{ p.measure_name or '—' }} | {% if p.allow_to_sell %} {% elif p.allow_to_sell == false %} {% else %} — {% endif %} | {{ p.fetched_at | datefmt }} |
Товары не найдены.