{% extends "base.html" %} {% block title %}Управление товарами{% endblock %} {% block content %}
| Фото | Название | Цена | Склад | Статус | Действия |
|---|---|---|---|---|---|
|
{% if p.image %}
📷
{% endif %}
|
{{ p.name }}
{% if p.description %}
{{ p.description[:50] }}{% if p.description|length > 50 %}...{% endif %} {% endif %} |
{{ "%.2f"|format(p.price) }} ₽ | {{ p.stock }} | {% if p.is_active %} Активен {% else %} Снят {% endif %} |
Товаров пока нет. Добавьте первый!