{% load i18n lfs_tags %}

{% trans "Products" %}

{% for product in page.object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'SKU' %} {% trans 'Active' %}
{{ product.get_name }} {{ product.sku }} {% if product.is_active %} {% else %} {% endif %}

{% trans 'Topseller' %}

{% for ts in topseller %} {% endfor %}
{% trans 'Name' %} {% trans 'SKU' %} {% trans 'Position' %} {% trans 'Active' %}
{{ ts.product.get_name }} {{ ts.product.sku }} {% if ts.product.is_active %} {% else %} {% endif %}