{% extends 'dashboard/base.twig' %} {% block title %}Recherche : {{ query }}{% endblock %} {% block title_header %}Moteur de Recherche{% endblock %} {% block actions %}
{{ results|length }} Résultat(s)
{% endblock %} {% block body %}
{# Orbes décoratifs pour l'effet Glass #}
{# Barre de recherche flottante #}
{% if results is not empty %}
{% for item in results %}
{# Effet de lueur au survol #}
{{ item.initials }}
{{ item.type }}

{{ item.title }}

{{ item.subtitle }}

Identifiant #{{ item.id }}
Voir Fiche
{% endfor %}
{% else %}

Aucun résultat trouvé

Désolé, nous n'avons trouvé aucune correspondance pour "{{ query }}".

{% endif %}
{% endblock %}