templates/contacts/critiques.html.twig line 1

Open in your IDE?
  1. {% extends 'contacts/contact_entete.inc.html.twig' %}
  2. {% block content %}
  3. <main class="tc-desktop-2_3 tc-phone-1_1">
  4.     <section class="tc-critiques tc-panel">
  5.         <div class="tc-panel-header">
  6.             {% if spectacles_in is defined and spectacles_in %}
  7.                 <h2 class="tc-color-critiques">
  8.                     Spectacles à venir avec critiques
  9.                 </h2>
  10.             {% endif %}
  11.             {% if spectacles_prod is defined and spectacles_prod %}
  12.                 <h2 class="tc-color-critiques">
  13.                     Tous les spectacles avec critiques
  14.                 </h2>
  15.                 <h3 class="tc-color-critiques">
  16.                     Produits ou coproduits par {{ data_object.organisation }}
  17.                 </h3>
  18.             {% endif %}
  19.             {% if spectacles_anciens is defined and spectacles_anciens %}
  20.                 <h2 class="tc-color-critiques">
  21.                     Spectacles passés avec critiques
  22.                 </h2>
  23.                 <h3 class="tc-color-critiques">
  24.                     {% if saison is defined and saison %}
  25.                      saison {{ saison }}
  26.                     {% endif %}
  27.                     {% if dateend_string is defined and dateend_string %}
  28.                         du {{ datestart_string }} au {{ dateend_string }}
  29.                     {% endif %}
  30.                 </h3>
  31.             {% endif %}
  32.             {% if spectacles_prod_anciens is defined and spectacles_prod_anciens %}
  33.                 <h2 class="tc-color-critiques">
  34.                     Tous les spectacles avec critiques
  35.                 </h2>
  36.                 <h3 class="tc-color-critiques">
  37.                     Produits ou coproduits par {{ data_object.organisation }}
  38.                     {% if saison is defined and saison %}
  39.                      saison {{ saison }}
  40.                     {% endif %}
  41.                     {% if dateend_string is defined and dateend_string %}
  42.                         du {{ datestart_string }} au {{ dateend_string }}
  43.                     {% endif %}
  44.                 </h3>
  45.             {% endif %}
  46.             {% if spectacles_coprod is defined and spectacles_coprod %}
  47.                 <h2 class="tc-color-critiques">
  48.                     Tous les spectacles à venir avec critiques
  49.                 </h2>
  50.                 <h3 class="tc-color-critiques">
  51.                     Produits ou coproduits par {{ data_object.organisation }}
  52.                     {% if saison is defined and saison %}
  53.                      saison {{ saison }}
  54.                     {% endif %}
  55.                     {% if dateend_string is defined and dateend_string %}
  56.                         du {{ datestart_string }} au {{ dateend_string }}
  57.                     {% endif %}
  58.                 </h3>
  59.             {% endif %}
  60.         </div>
  61.         <div class="tc-panel-body tc-masonry-container tc-spectacles-tpl-b">
  62.             {% if spectacles is defined and spectacles %}
  63.                 {% for idspectacle,spectacle in spectacles %}
  64.                 <div class="tc-tablet-1_2 tc-block">
  65.                     {% include 'contacts/spectacle_critique_titre.inc.html.twig' %}
  66.                 </div>
  67.                 {% endfor %}
  68.             {% endif %}
  69.         </div>
  70.         <div class="tc-panel-footer">
  71.             {% include 'includes/pagination.inc.html.twig' %}
  72.         </div>
  73.     </section>
  74. </main>
  75. {% endblock %}