{% if request.tenant %} {% if user.is_authenticated %} {% comment %}Показываем меню tenant приложений только если мы не на странице setup-password (public схема){% endcomment %} {% if 'setup-password' not in request.path %} Товары Все товары Каталог Вариативные товары Категории Теги Варианты (группы) Атрибуты Единицы измерения Единицы продажи Заказы Список заказов Статусы заказов Клиенты Склад Управление складом Витрины Касса {% endif %} {% if request.user.is_owner or request.user.is_superuser %} {% if request.tenant %} Настройки {% else %} Настройки {% endif %} {% endif %} {% if user.is_owner or user.is_manager %} {% url 'inventory:debug_page' as debug_url %} {% if debug_url %} Debug {% endif %} {% endif %} {% endif %} {% if user.is_authenticated %} Профиль ({{ user.name|default:user.email }}) Выйти {% else %} Вход {% endif %} {% endif %}