{% extends 'base.html.twig' %} {% block title %}Horaires d'ouverture {% endblock %} {% block body %}
{% include "_partials/_adminnav.html.twig" %}

Horaires d'ouverture

{% for hour in hours %} {% endfor %}
Jour Ouvert le matin de Ouvert l'après-midi de actions
{{ hour.day }} {% if hour.openTimeMorning is not null and hour.closedTimeMorning is not null %} {{ hour.openTimeMorning }} à {{ hour.closedTimeMorning }} {% else %} Fermé {% endif %} {% if hour.openTimeAfternoon is not null and hour.closedTimeAfternoon is not null %} {{ hour.openTimeAfternoon }} à {{ hour.closedTimeAfternoon }} {% else %} Fermé {% endif %} Modifier
{% endblock %}