templates/__front/search.html.twig line 1

Open in your IDE?
  1. <div class="tabs advanced-real-estate-tabs clearfix">
  2.     <div class="container clearfix">
  3.         <ul class="tab-nav clearfix">
  4.             <li><a href="#tab-properties" data-scrollto="#tab-properties" data-offset="133">
  5.                     {{ "Recherche des projets"|trans }}
  6.                 </a>
  7.             </li>
  8.         </ul>
  9.     </div>
  10.     <div class="tab-container search-container">
  11.         <div class="container clearfix">
  12.             <div class="tab-content clearfix" id="tab-properties">
  13.                 {{ form_start(search_form, {'action': path('mes_projets'),'attr': {'id': 'form_search_projet'}}) }}
  14.                 {{ form_errors(search_form) }}
  15.                 <div class="row">
  16.                     <div class="col-lg-3 col-md-6 col-12 bottommargin-xs">
  17.                         <label>{{ "Partenaire"|trans }}</label>
  18.                         {{ form_widget(search_form.partenaire) }}
  19.                     </div>
  20.                     <div class="col-lg-3 col-md-6 col-12 bottommargin-xs">
  21.                         <label>{{ "Programme"|trans }}</label>
  22.                         {{ form_widget(search_form.programme) }}
  23.                     </div>
  24.                     <div class="col-lg-3 col-md-6 col-12 bottommargin-xs">
  25.                         <label>{{ "Gouvernorat"|trans }}</label>
  26.                         {{ form_widget(search_form.gouvernorat, {'attr': {'data-live-search': 'true'}}) }}
  27.                     </div>
  28.                     <div class="col-lg-3 col-md-6 col-12 bottommargin-xs">
  29.                         <label>{{ "Municipalité"|trans }}</label>
  30.                         {{ form_widget(search_form.communes,
  31.                             {'attr': {'data-live-search': 'true', 'multiple': 'multiple'}})
  32.                         }}
  33.                     </div>
  34.                     <div class="w-100"></div>
  35.                     <div class="col-lg-3 col-md-3 bottommargin-xs">
  36.                         <label>{{ "mode-execution"|trans }}</label>
  37.                         {{ form_widget(search_form.modExecution,
  38.                             {'attr': {'data-live-search': 'true'}})
  39.                         }}
  40.                     </div>
  41.                     <div class="col-lg-3 col-md-3 bottommargin-xs">
  42.                         <label>{{ "secteur-ntervention"|trans }}</label>
  43.                         {{ form_widget(search_form.envIntervention,
  44.                             {'attr': {'data-live-search': 'true'}})
  45.                         }}
  46.                     </div>
  47.                     <div class="col-lg-2 col-md-2 bottommargin-xs">
  48.                         <label>{{ "Année"|trans }}</label>
  49.                         {{ form_widget(search_form.date,
  50.                             {'attr': {'class': 'year-range-slider'}})
  51.                         }}
  52.                     </div>
  53.                     <div class="col-lg-2 col-md-2 bottommargin-xs">
  54.                         <label>{{ "Budget"|trans }}</label>
  55.                         {{ form_widget(search_form.budget,
  56.                             {'attr': {'class': 'price-range-slider'}})
  57.                         }}
  58.                     </div>
  59.                     <div class="col-lg-2 col-md-2 clearfix">
  60.                         <button class="button button-3d button-rounded w-100 m-0" type="submit" value="1"
  61.                                 name="submit" style="margin-top: 35px !important;">{{ "Recherche"|trans }}
  62.                         </button>
  63.                     </div>
  64.                 </div>
  65.                 {{ form_row(search_form._token) }}
  66.                 {{ form_end(search_form, {render_rest: false}) }}
  67.             </div>
  68.         </div>
  69.     </div>
  70. </div>