{% if modulesList.notInstalled is defined and modulesList.notInstalled is not empty %}
{% for module in modulesList.notInstalled %}
{{ include('@PrestaShop/Admin/Module/Includes/tab-module-line.html.twig',{'module': module}) }}
{% endfor %}
{% endif %}
{% if modulesList.installed|length > 0 %}
{% for module in modulesList.installed %}
{{ include('@PrestaShop/Admin/Module/Includes/tab-module-line.html.twig',{'module': module}) }}
{% endfor %}
{% endif %}
{% endif %}