{% extends "base.html" %} {% block title %}Ricerca{% endblock %} {% block page_title %}Risultati per "{{ q }}"{% endblock %} {% block content %} {% if not q %}

Inserisci un termine nella barra di ricerca

{% else %} {% set total = results.preventivi|length + results.clienti|length + results.prodotti|length %}

{{ total }} risultat{% if total == 1 %}o{% else %}i{% endif %} trovati

{% if results.preventivi %}

📄 Preventivi ({{ results.preventivi|length }})

{% for p in results.preventivi %} {% endfor %}
NumeroClienteTitoloStato
{{ p.numero }} {{ p.cliente_nome or '—' }} {{ p.titolo or '—' }} {{ p.stato }} Apri
{% endif %} {% if results.clienti %}

👥 Clienti ({{ results.clienti|length }})

{% for c in results.clienti %} {% endfor %}
NomeEmailTelefono
{{ c.nome }} {{ c.email or '—' }} {{ c.telefono or '—' }} Modifica
{% endif %} {% if results.prodotti %}

📦 Prodotti ({{ results.prodotti|length }})

{% for p in results.prodotti %} {% endfor %}
NomeDescrizionePrezzo
{{ p.nome }} {{ p.descrizione or '—' }} € {{ "%.2f"|format(p.prezzo_default) }} Modifica
{% endif %} {% if total == 0 %}

Nessun risultato per "{{ q }}"

Prova con un termine diverso.

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