{% extends "layout.html.twig" %} {% import "macros.twig" as lbl %} {% block title %}Interventi ยท {{ luogo.nome }} ยท {{ app_name }}{% endblock %} {% set can_write = current_user.ruolo in ['admin', 'editor'] %} {% block content %}

Interventi / {{ luogo.nome }}

{{ luogo.nome }} {{ luogo.ambito }}

{% if can_write %} + Intervento qui {% endif %}
{% if interventi is empty %}

Nessun intervento registrato in questo luogo.

{% else %}
    {% for i in interventi %}
  1. {{ i.tipo_nome }} {{ i.data|date('d/m/Y') }}

    {{ i.descrizione }}

    {% if allegati[i.id] is defined %}
    {{ lbl.foto_thumbs(allegati[i.id], can_write ? 'live' : false) }}
    {% endif %}
    {% if i.elemento_nome %}๐ŸŒฟ {{ i.elemento_nome }}{% endif %} {% if i.quantita is not null %}๐Ÿ“ {{ i.quantita + 0 }}{{ i.unita ? ' ' ~ i.unita : '' }}{% endif %} {% if i.eseguito_da_nome %}๐Ÿ‘ค {{ i.eseguito_da_nome }}{% endif %} {% if can_write %} modifica {% endif %}
  2. {% endfor %}
{% endif %} {% endblock %}