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

Open in your IDE?
  1. {% if entity.vodTitles | length %}
  2.     {% set vodTitle = entity.vodTitles.first %}
  3.     {% if vodTitle.copyrightLine %}
  4.         <div class="short-movie-info__wrapper">
  5.             <h6>{{ 'content.movies.copyright' | trans({}, 'PressSite') }}</h6>
  6.             <p>{{ vodTitle.copyrightLine }}</p>
  7.         </div>
  8.     {% endif %}
  9. {% endif %}