{% extends "MuzichCoreBundle::layout.html.twig" %} {% block title %}Recherche{% endblock %} {% block main_content %} {% include "MuzichCoreBundle:Menu:containerMenu.html.twig" with {'active': null} %}
{% include "MuzichCoreBundle:GlobalSearch:form.html.twig" with {'form': form } %}
{% if results.users|length or results.groups|length or results.elements|length %} {% if results.users %} {{ 'search.users'|trans({}, 'network') }} {% endif %} {% if results.groups %} {{ 'search.groups'|trans({}, 'network') }} {% endif %} {% if results.elements %} {% include "MuzichCoreBundle:SearchElement:default.html.twig" with { 'noelements_filter' : true, 'elements' : results.elements }%} {% include "MuzichCoreBundle:SearchElement:more_button.html.twig" with { 'display_more_button' : display_more_button, 'elements_length' : results.elements|length, 'more_path' : 'global_search_elements_empty' }%} {% endif %} {% elseif app.request.getMethod == 'POST' %}

{{ 'global_search.no_results'|trans({}, 'userui') }}

{% endif %} {% endblock %}