templates/menu/navCategLarge.html.twig line 1

  1. <div class="navigation">            
  2.     {% if categorie.categories|length > 0 %}  
  3.         <h2>Catégories</h2>
  4.         <ul>
  5.             {% for child1 in categorie.categories|sort((a, b) => a.titre <=> b.titre) %}
  6.             <li>
  7.                 <a href="{{ path('categoriefiltre_page', {'type': type, 'code':child1.id, 'coche':coche}) }}" >
  8.                 {% if child1.id == code %} <span class="navactive{{ type }}" style="font-weight:bold;"> {% else %} {% if child1.id == 34 %} <span style="color:red; font-weight:bold;"> {% endif %} {% endif %}{{ child1.titre }}</span>
  9.                 </a>
  10.                 {% if child1.categories|length > 0 %}&nbsp;<a nohref class="filtre-down" onclick="afficheSousCategories('scat_{{ child1.id }}')">&nbsp;<i class="fas fa-angle-double-down"></i>&nbsp;</a> {% endif %}
  11.                 {% if child1.categories|length > 0 %}  
  12.                 <ul id="scat_{{ child1.id }}" {% if child1.id != parentid %} class="ul-hidden"  {% endif %} >
  13.                     {% for child2 in child1.categories|sort((a, b) => a.titre <=> b.titre) %}
  14.                     <li>
  15.                         <a href="{{ path('categoriefiltre_page', {'type': type, 'code':child2.id, 'coche':coche}) }}">{% if child2.id == code %} <span class="navactive{{ type }}"> {% endif %}{{ child2.titre }}</span>
  16.                         {% if child2.categories|length > 0 %}&nbsp;<a nohref class="filtre-down" onclick="afficheSousCategories('scat_{{ child2.id }}')">&nbsp;<i class="fas fa-angle-double-down"></i>&nbsp;</a> {% endif %}
  17.                         </a>   
  18.                         {% if child2.categories|length > 0 %}  
  19.                         <ul id="scat_{{ child2.id }}">
  20.                             {% for child3 in child2.categories|sort((a, b) => a.titre <=> b.titre) %}
  21.                             <li>
  22.                                 <a href="{{ path('categoriefiltre_page', {'type': type, 'code':child3.id, 'coche':coche}) }}">{% if child3.id == code %} <span class="navactive{{ type }}"> {% endif %}{{ child3.titre }}</span>
  23.                                 {% if child3.categories|length > 0 %}&nbsp;<a nohref class="filtre-down" onclick="afficheSousCategories('scat_{{ child3.id }}')">&nbsp;<i class="fas fa-angle-double-down"></i>&nbsp;</a> {% endif %}
  24.                                 </a>   
  25.                                 {% if child3.categories|length > 0 %}  
  26.                                 <ul id="scat_{{ child3.id }}">
  27.                                 {% for child4 in child2.categories|sort((a, b) => a.titre <=> b.titre) %}
  28.                                     <li>
  29.                                     <a href="{{ path('categoriefiltre_page', {'type': type, 'code':child4.id, 'coche':coche}) }}">{% if child4.id == code %} <span class="navactive{{ type }}"> {% endif %}{{ child4.titre }}</span></a>   
  30.                                     </li>
  31.                                 {% endfor %}
  32.                                 </ul>
  33.                                 {% endif %}  
  34.                             </li>
  35.                             {% endfor %}
  36.                         </ul>
  37.                         {% endif %}  
  38.                     </li>
  39.                     {% endfor %}
  40.                 </ul>
  41.                 {% endif %}  
  42.             </li>
  43.             {% endfor %}
  44.         </ul>
  45.     {% endif %}   
  46.     {% if type==2 %}            
  47.         <h2>Types</h2>
  48.         <div style="margin-left:20px;">
  49.         {% if coche == 'S' %} 
  50.             <input type="checkbox" value="S" checked onclick="filtreCoche('')" >&nbsp;Stérilisable</input><br/>
  51.         {% else %}
  52.             <input type="checkbox" value="S" onclick="filtreCoche('S')" >&nbsp;Stérilisable</input><br/>
  53.         {% endif %}
  54.         {% if coche == 'C' %} 
  55.             <input type="checkbox" value="C" checked onclick="filtreCoche('')" >&nbsp;Consommable</input><br/>
  56.         {% else %}
  57.             <input type="checkbox" value="C" onclick="filtreCoche('C')" >&nbsp;Consommable</input><br/>
  58.         {% endif %}
  59.         {% if coche == 'E' %} 
  60.             <input type="checkbox" value="E" checked onclick="filtreCoche('')" >&nbsp;Equipement</input><br/>
  61.         {% else %}
  62.             <input type="checkbox" value="E" onclick="filtreCoche('E')" >&nbsp;Equipement</input><br/>
  63.         {% endif %}
  64.         {# {% if coche == 'P' %} 
  65.             <input type="checkbox" value="P" checked onclick="filtreCoche('')" >&nbsp;Plateau Praticien</input><br/>
  66.         {% else %}
  67.             <input type="checkbox" value="P" onclick="filtreCoche('P')" >&nbsp;Plateau Praticien</input><br/>
  68.         {% endif %}
  69.         {% if coche == 'A' %} 
  70.             <input type="checkbox" value="A" checked onclick="filtreCoche('')" >&nbsp;Plateau Assistante</input><br/>
  71.         {% else %}
  72.             <input type="checkbox" value="A" onclick="filtreCoche('A')" >&nbsp;Plateau Assistante</input><br/>
  73.         {% endif %} #}
  74.         <input type="hidden" id="urlFiltre" value="{{ path('categoriefiltre_page', {'type': type, 'code':code, 'coche':''}) }}" />
  75.         </div>
  76.     {# {% else %}
  77.         <div style="margin-top:20px;margin-left:15px;">
  78.         <a href="{{ path('categoriefiltre_page', {'type': type, 'code':'U'}) }}"><span style="color:red; font-weight:bold;">URGENCES</span></a><br/>
  79.         </div> #}
  80.     {% endif %}
  81. </div>