diff --git a/module/CommonBundle/Resources/views/common/index/index.twig b/module/CommonBundle/Resources/views/common/index/index.twig index d09dbbae37..3339f0fcef 100644 --- a/module/CommonBundle/Resources/views/common/index/index.twig +++ b/module/CommonBundle/Resources/views/common/index/index.twig @@ -161,7 +161,7 @@ {# {% endif %}#} {% for opening in cudi.openingHours %}
-

{{ dateLocalized(opening.getStart(), 'EEEE (d/M)')|capitalize }} ({{ opening.getComment() }})

+

{{ dateLocalized(opening.getStart(), 'EEEE (d/M)')|capitalize }}  {% if opening.getComment(language) %} ({{ opening.getComment(language) }}) {% endif %}

{{ opening.getStart().format('H:i') }} - {{ opening.getEnd().format('H:i') }}

{% endfor %} @@ -176,7 +176,7 @@ {% endfor %} {% for opening in shop.openingHours %}
-

{{ dateLocalized(opening.getStartDate(), 'EEEE (d/M)')|capitalize }} ({{ opening.getComment() }})

+

{{ dateLocalized(opening.getStartDate(), 'EEEE (d/M)')|capitalize }}  {% if opening.getComment(language) %} ({{ opening.getComment(language) }}) {% endif %}

{{ opening.getStartDate().format('H:i') }} - {{ opening.getEndDate().format('H:i') }}

{% endfor %}