{% load i18n %} {% load lfs_tags %} {% if products %} {% if page_2.has_previous %} First Previous {% else %} {% trans 'First' %} {% trans 'Previous' %} {% endif %} {{page_2.number}} / {{paginator_2.num_pages}} {% if page_2.has_next %} {% trans 'Next' %} {% trans 'Last' %} {% else %} {% trans 'Next' %} {% trans 'Last' %} {% endif %}
{% for product in page_2.object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Active' %} {% trans 'SKU' %} {% trans 'Sub type' %} {% trans 'Price' %} {% trans 'Edit' %}
{{product.get_name}} {% if product.is_active %} {% else %} {% endif %} {{product.get_sku}} {{product.sub_type|sub_type_name}} {{product.price|currency}} Edit
{% else %}

{% trans 'This category has no products yet.' %}

{% endif %}