Services
{% for service in services %}
{{service.name}}
{% endfor %}
Femme
{% for shopping in shoppings %}
{% if 'CAT_FEMME' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Homme
{% for shopping in shoppings %}
{% if 'CAT_HOMME' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Enfant
{% for shopping in shoppings %}
{% if 'CAT_ENFANT' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Chaussures
{% for shopping in shoppings %}
{% if 'CAT_CHAUSS' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Accessoires
{% for shopping in shoppings %}
{% if 'CAT_ACCESS' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Bijoux & Make up
{% for shopping in shoppings %}
{% if 'CAT_MAKEUP' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Home
{% for shopping in shoppings %}
{% if 'CAT_HOME' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Parfums
{% for shopping in shoppings %}
{% if 'CAT_PARFUM' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Tech
{% for shopping in shoppings %}
{% if 'CAT_TECH' in shopping.categorie %}
{{shopping.name}}
{% endif %}
{% endfor %}
Café
{% for resto in restos %}
{% if 'CAT_CAFE' in resto.categorie %}
{{resto.name}}
{% endif %}
{% endfor %}
Snack
{% for resto in restos %}
{% if 'CAT_SNACK' in resto.categorie %}
{{resto.name}}
{% endif %}
{% endfor %}
Traditionnel
{% for resto in restos %}
{% if 'CAT_TRAD' in resto.categorie %}
{{resto.name}}
{% endif %}
{% endfor %}
Restaurant
{% for resto in restos %}
{% if 'CAT_REST' in resto.categorie %}
{{resto.name}}
{% endif %}
{% endfor %}
{% block body %}{% endblock %}