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

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

{% endif %} {% if product_list %}

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

{% for t in ProductType.objects.all().order_by('name') %}

{{ t }}

{% endfor %}

{% trans %}Uncategorized{% endtrans %}

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