{% extends "layout.html.twig" %} {% import "macros.twig" as lbl %} {% block title %}Interventi · {{ app_name }}{% endblock %} {% set can_write = current_user.ruolo in ['admin', 'editor'] %} {% block content %}
Nessun intervento per i filtri selezionati.
{% else %}{{ interventi|length }} interventi
| Data | Tipo | Luogo | Elemento | Descrizione | Quantità | Eseguito da | Azioni |
|---|---|---|---|---|---|---|---|
| {{ i.data|date('d/m/Y') }} | {{ i.tipo_nome }} | {{ i.luogo_nome }} | {% if i.elemento_id %}{{ i.elemento_nome }}{% else %}—{% endif %} |
{{ i.descrizione }}
{% if allegati[i.id] is defined %}
{{ lbl.foto_thumbs(allegati[i.id], false) }}
{% endif %}
|
{{ i.quantita is not null ? (i.quantita + 0) ~ (i.unita ? ' ' ~ i.unita : '') : '—' }} | {{ i.eseguito_da_nome ?: '—' }} | {% if can_write %} {% else %}—{% endif %} |