templates/includes/aside/videos/dvd_thumbnail.html.twig line 1

Open in your IDE?
  1. <section class="tc-panel tc-desktop-1_1">
  2.     {% if dvd.vignette is defined and dvd.vignette %}
  3.         <figure>
  4.             <img src="{{ dvd.vignette }}" width="100%" />
  5.         </figure>
  6.     {% endif %}
  7.     <div class="tc-panel-header">
  8.         <h3>Fiche technique du film</h3>
  9.     </div>
  10.     <div class="tc-panel-body">
  11.         <div class="tc-block">
  12.             <div class="tc-block-body">
  13.                 <ul class="tc-default-list">
  14.                     {% if dvd.price is defined and dvd.price %}
  15.                         <li><span class="type">Prix : </span>{{ dvd.price }} &euro;</li>
  16.                     {% endif %}
  17.                     {% if dvd.timeMovie is defined and dvd.timeMovie %}
  18.                         <li><span class="type">Durée : </span> {{ dvd.timeMovie }} minutes</li>
  19.                     {% endif %}
  20.                     {% if dvd.zone is defined and dvd.zone %}
  21.                         <li><span class="type">Zone : </span> {{ dvd.zone.zone }} <span class="type">({{ dvd.zone.description }})</span></li>
  22.                     {% endif %}
  23.                     {% if dvd.techno is defined and dvd.techno %}
  24.                         <li><span class="type">Technologie : </span> {{ dvd.techno.techno }}</li>
  25.                     {% endif %}
  26.                     {% if dvd.format is defined and dvd.format %}
  27.                         <li><span class="type">Format : </span> {{ dvd.format.format }}</li>
  28.                     {% endif %}
  29.                     {% if dvd.place_shooting_exist is defined and dvd.place_shooting_exist %}
  30.                         <li><span class="type">Lieu de tournage : </span>
  31.                             {% if dvd.place_shooting is defined and dvd.place_shooting %} {{ dvd.place_shooting }}
  32.                                 {% if dvd.dvd_tournage is defined and dvd.dvd_tournage %}, {% endif %}
  33.                             {% endif %}
  34.                             {% for tournage in dvd.dvd_tournage %}
  35.                                 <span><a href="/contacts/{{ tournage.url_clean }}">{{ tournage.organisation }}</a>{% if tournage.nopunct is not defined or tournage.nopunct == FALSE %}, {% endif %}</span>
  36.                             {% endfor %}
  37.                     {% endif %}
  38.                     {% if dvd.dateShooting is defined and dvd.dateShooting %}
  39.                         <li><span class="type">Date de tournage : </span> {{ dvd.dateShooting|date('d-m-Y')  }}</li>
  40.                     {% endif %}
  41.                     {% if dvd.dvd_production is defined and dvd.dvd_production %}
  42.                     <li><span class="type">Production : </span>
  43.                         {% for idcontact,production in dvd.dvd_production %}
  44.                         <span>
  45.                             <a href="/contacts/{{ production.url_clean }}">{{ production.organisation }}</a>{% if production.nopunct is not defined or not production.nopunct %}, {% endif %}
  46.                         </span>
  47.                         {% endfor %}
  48.                     </li>
  49.                     {% endif %}
  50.                 </ul>
  51.             </div>
  52.         </div>
  53.     </div>
  54.     {% if dvd.dvd_editeur is defined and dvd.dvd_editeur %}
  55.     <div class="tc-panel-header">
  56.         <h3 class="tc-textwrap-title">&Eacute;diteur </h3>
  57.     </div>
  58.     {% endif %}
  59.     <div class="tc-panel-body">
  60.         <div class="tc-block">
  61.             <div class="tc-block-body">
  62.                 {% for idcontact,editeur in dvd.dvd_editeur %}
  63.                 <span>
  64.                     {{ editeur.organisation }}{% if editeur.nopunct is not defined or editeur.nopunct == false %}, {% endif %}
  65.                 </span>
  66.                 {% endfor %}
  67.                 {% if dvd.urlVente is defined and dvd.urlVente %}
  68.                 <ul class="tc-default-list">
  69.                     {% if dvd.url_vente_copat is defined and dvd.url_vente_copat %}
  70.                         <li><a href="{{ dvd.urlVente }}">Achetez le DVD pour un <strong>usage privé</strong></a></li>
  71.                         {% if dvd.url_vente_bis_copat is defined and dvd.url_vente_bis_copat %}
  72.                             <li><a href="{{ dvd.url_vente_bis_copat }}">Achetez le DVD avec les droits de <strong>visionnage en classe</strong></a></li>
  73.                         {% endif %}
  74.                     {% else %}
  75.                         <li><a href="{{ dvd.urlVente }}">Acheter en ligne</a></li>
  76.                     {% endif %}
  77.                 </ul>
  78.                 {% endif %}
  79.             </div>
  80.         </div>
  81.     </div>
  82. </section>