templates/main/filter_form.html.twig line 1

Open in your IDE?
  1. <ul class="filter-form-data">
  2.     <li>
  3.         <div class="form-check">
  4.           <input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
  5.           <label class="form-check-label" for="defaultCheck1">
  6.             Masquer les éléments expirés
  7.           </label>
  8.         </div>
  9.     </li>
  10.     <li>
  11.     location
  12.     <select id="filterLocation" class="form-control">
  13.         <option value="" >Choose...</option>
  14.     {% for city in listCity %}
  15.         <option value="{{city}}">{{city}}</option>
  16.     {% endfor %}
  17.     </select>
  18.     </li>
  19. </ul>