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

Elementi / {{ attivita.elemento_nome }} / Calendario

{{ attivita.nome }}

{% if can_write %} Modifica attività {% endif %}
{# Legenda + indicatore salvataggio #}
verde = periodo migliore giallo = periodo medio nessun periodo {% if can_write %} Salvataggio… ✓ salvato Errore di salvataggio {% else %} sola lettura {% endif %} {# Griglia 52 settimane raggruppate per mese #}
{% for m in months %}

{{ m.nome }}

{% for w in m.weeks %} {% set stt = stati[w.numero] ?? '' %} {% endfor %}
{% endfor %}
{# ── Risorse ───────────────────────────────────────────────── #}

Risorse

{% if can_write %} + Risorsa {% endif %}
{% if risorse is empty %}

Nessuna risorsa (link, guida, video) collegata.

{% else %}
{% if can_write %}{% endif %} {% for r in risorse %} {% if can_write %} {% endif %} {% endfor %}
DescrizioneLinkAzioni
{{ r.descrizione ?: '—' }} {{ r.url|length > 60 ? r.url|slice(0, 60) ~ '…' : r.url }} ↗
Modifica
{{ csrf_field() }}
{% endif %} {# ── Storico (diario annuale) ──────────────────────────────── #}

Storico

{% if can_write %} + Voce di storico {% endif %}
{% if storico is empty %}

Nessuna voce di storico. Annota com'è andata, anno per anno.

{% else %}
{% if attivita.sezione_modello == 'animale' %}{% endif %} {% if can_write %}{% endif %} {% for s in storico %} {% if attivita.sezione_modello == 'animale' %}{% endif %} {% if can_write %} {% endif %} {% endfor %}
DataAnno{{ lbl.variante_label(attivita.sezione_modello) }}LuogoOrigineEsitoAzioni
{{ s.data ? s.data|date('d/m/Y') : '—' }} {{ s.anno }}{{ s.variante_nome ?: '—' }}{{ s.luogo_nome ?: '—' }} {{ s.origine ?: '—' }} {{ s.esito|length > 100 ? s.esito|slice(0, 100) ~ '…' : s.esito }}
Modifica
{{ csrf_field() }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}