templates/user/amateur/online.html.twig line 1

Open in your IDE?
  1. {% extends baseTemplateName(app.request) %}
  2. {% block title_suffix %}Online Amateure - Seite {{ page }}{% endblock %}
  3. {% block body %}
  4.     {% include '_structure/menu-tabs-amateur.html.twig' %}
  5.     {% if false %}
  6.         {# https://interquest.atlassian.net/browse/FE-22 #}
  7.         <div class="filter row align-items-center bg-grey-10 py-3 mx-0 mb-4">
  8.             <h6 class="col-1 mb-0">Filter:</h6>
  9.             <form class="col-11">
  10.                 <select class="col-3 mr-3 form-control custom-select"><option>Geschlecht: bitte wählen</option></select>
  11.                 <select class="col-3 mr-3 form-control custom-select"><option>Alter: bitte wählen</option></select>
  12.                 <select class="col-3 form-control custom-select"><option>PLZ: bitte wählen</option></select>
  13.             </form>
  14.         </div>
  15.     {% endif %}
  16.     <div class="resultlist row">
  17.         {% for amateur in amateurs %}
  18.             {% include '_widgets/home-amateur.html.twig' with { member: amateur } %}
  19.         {% endfor %}
  20.     </div>
  21.     {% if amateurs|length %}
  22.         {{ knp_pagination_render(amateurs) }}
  23.     {% endif %}
  24. {% endblock %}