3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-10-05 19:12:09 +00:00

Only show category when not empty

This commit is contained in:
Yoann Pétri 2019-05-06 08:41:34 +02:00
parent acf770a4ef
commit 9c8487efec

View file

@ -142,6 +142,7 @@
</tr> </tr>
{% endif %} {% endif %}
{% for category in categories %} {% for category in categories %}
{% if category.active_products.count > 0 %}
<tr style="text-align:center; font-weight:bold;"><td colspan="4">{{category}}</td></tr> <tr style="text-align:center; font-weight:bold;"><td colspan="4">{{category}}</td></tr>
{% for product in category.active_products %} {% for product in category.active_products %}
{% if forloop.counter0|divisibleby:4 %} {% if forloop.counter0|divisibleby:4 %}
@ -151,6 +152,7 @@
{% if forloop.counter|divisibleby:4 %} {% if forloop.counter|divisibleby:4 %}
</tr> </tr>
{% endif %} {% endif %}
{% endif %}
{% endfor %} {% endfor %}
{% if not category.active_products|divisibleby:4 %} {% if not category.active_products|divisibleby:4 %}
</tr> </tr>