templates/menu/navCategSmall.html.twig line 1

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