{% extends "layout.html.twig" %} {% block title %}{{ mangime.nome }} · {{ app_name }}{% endblock %} {% set can_write = current_user.ruolo in ['admin', 'editor'] %} {% block content %}
Mangimi / {{ mangime.nome }}
{{ mangime.note|nl2br }}
{% endif %} {# Magazzino #}⚠ Scorta sotto la soglia minima.
{% endif %}Nessun acquisto registrato.
{% else %}| Data | Kg | Costo | €/kg | Fornitore | {% if can_write %}Azioni | {% endif %}
|---|---|---|---|---|---|
| {{ a.data|date('d/m/Y') }} | {{ a.quantita_kg }} | € {{ a.costo_totale }} | {{ a.quantita_kg > 0 ? '€ ' ~ (a.costo_totale / a.quantita_kg)|round(4) : '—' }} | {{ a.fornitore ?: '—' }} | {% if can_write %}{% endif %} |
Nessuna somministrazione registrata.
{% else %}| Data | Gruppo | Kg | {% if can_write %}Azioni | {% endif %}
|---|---|---|---|
| {{ s.data|date('d/m/Y') }} | {{ s.gruppo_nome }} | {{ s.quantita_kg }} | {% if can_write %}{% endif %} |