templates/press_site/actions/movies/partials/details/cast.html.twig line 1

Open in your IDE?
  1. {% set productCast = getProductCast(entity) %}
  2. {% if productCast is not empty %}
  3.     <div class="short-movie-info__wrapper">
  4.         <h6>{{ 'content.movies.cast' | trans({}, 'PressSite') }}</h6>
  5.         <p>{{ productCast | join(', ') }}</p>
  6.     </div>
  7. {% endif %}