{% extends "base.html" %} {% block title %}Recherche — GMAO{% endblock %} {% block content %}

Recherche

{% if query %}
Interventions ({{ interventions|length }})
{% if interventions %}
    {% for i in interventions[:10] %}
  • {{ i.title }}
    {{ i.status }}
  • {% endfor %} {% if interventions|length > 10 %}
  • ... et {{ interventions|length - 10 }} autres
  • {% endif %}
{% else %}

Aucun résultat

{% endif %}
Équipements ({{ equipments|length }})
{% if equipments %}
    {% for e in equipments[:10] %}
  • {{ e.name }}
    {{ e.code or '—' }}
  • {% endfor %} {% if equipments|length > 10 %}
  • ... et {{ equipments|length - 10 }} autres
  • {% endif %}
{% else %}

Aucun résultat

{% endif %}
Entreprises ({{ companies|length }})
{% if companies %} {% else %}

Aucun résultat

{% endif %}
{% endif %}
{% endblock %}