{% extends "YOUCommercantBundle:Horaire:index.html.twig" %} {% block content %}
Horaire : {{ horaire.name }} Modifier cet horaire
{% for key,day in daylist %} {% set nb = 0 %}{{ day }} :
{% for item in horaire.tranches %} {% if item.day == key %}{{ item.startH|totime }}h{{ item.startM|totime }} à {{ item.endH|totime }}h{{ item.endM|totime }}
{% set nb = nb+1 %} {% endif %} {% endfor %} {% if nb == 0 %}Fermé
{% endif %}