{% extends "layout.html.twig" %} {% import "macros.twig" as lbl %} {% block title %}{{ is_edit ? 'Modifica' : 'Nuovo' }} intervento · {{ app_name }}{% endblock %} {% set can_write = current_user.ruolo in ['admin', 'editor'] %} {% block content %}

Interventi / {{ is_edit ? 'Modifica' : 'Nuovo' }}

{{ is_edit ? 'Modifica intervento' : 'Nuovo intervento' }}

{{ csrf_field() }}
{% if errors.luogo_id %}

{{ errors.luogo_id }}

{% endif %}
{% if errors.tipo_intervento_id %}

{{ errors.tipo_intervento_id }}

{% endif %}
{% if errors.data %}

{{ errors.data }}

{% endif %}
{% if errors.quantita %}

{{ errors.quantita }}

{% endif %}
{% if errors.unita %}

{{ errors.unita }}

{% endif %}
{% if errors.descrizione %}

{{ errors.descrizione }}

{% endif %}
{% if errors.elemento_id %}

{{ errors.elemento_id }}

{% endif %}
{% set eseguito_sel = i.eseguito_da ?: current_user.id %} {% if errors.eseguito_da %}

{{ errors.eseguito_da }}

{% endif %}
{% if is_edit and allegati is not empty %}
{{ lbl.foto_thumbs(allegati, can_write ? 'mark' : false) }}

Tocca la ✕ su una foto per segnarla; verrà rimossa al salvataggio.

{% endif %} {# accept=image/* + multiple senza 'capture': su mobile il browser propone sia fotocamera sia galleria. #}
Annulla
{% endblock %}