{% extends 'base.html.twig' %} {% set titleName = "Jumia Price Manager" %} {% block title %} POWER DATA | {{ titleName }} {% endblock %} {% block page %}{{ titleName }}{% endblock %} {% block breadcrumb %} {% if titleName != "Home" %} {{ titleName }} {% endif %} {% endblock %} {% block content %} Sale Start Date Sale End Date {% if products|length > 0 %} 10 15 20 25 30 List of products : {{ products|length }} Select all BlackList Qty = 0 Emplacement Name J Price J Sale Price D Price SKU {% for id,product in products %} {{ product['name'] }} {{ product['jumiaPrice'] }} {{ product['jumiaSalePrice'] }} {{ product['dolibarrPrice'] }} {{ product['sku'] }} {% endfor %} {% else %} No products is available at the moment {% endif %} {% if products|length > 0 %} Update {% endif %} {% endblock %} {% block script %} {% endblock %}