{% extends "core/base.jinja" %} {% block title %} {% trans %}Product list{% endtrans %} {% endblock %} {% block content %} {% if current_tab == "products" %}

{% trans %}New product{% endtrans %}

{% endif %}

{% trans %}Product list{% endtrans %}

{%- for product_type, products in object_list -%}

{{ product_type or _("Uncategorized") }}

{%- else -%} {% trans %}There is no products in this website.{% endtrans %} {%- endfor -%} {% endblock %}