{% extends "base.html" %} {% block titolo %}{{ dati.titolo }}{% endblock %} {% block intestazione %}{{ dati.titolo }}{% endblock %} {% block azioni %} {% set qs = request.query_string.decode() %} {% set base = url_for('report.genera', tipo=tipo) ~ '?' ~ qs ~ ('&' if qs else '') %} Indietro {% endblock %} {% block contenuto %}
{% if dati.sottotitolo %}

{{ dati.sottotitolo }}

{% endif %}
{% if dati.righe %}
{% for h in dati.intestazioni %}{% endfor %} {% for riga in dati.righe %} {% for cella in riga %}{% endfor %} {% endfor %} {% if dati.totali %} {% for cella in dati.totali %}{% endfor %} {% endif %}
{{ h }}
{{ cella }}
{{ cella }}
{% else %}
Nessun dato per i criteri selezionati.
{% endif %}
{% if dati.note %}
{{ dati.note }}
{% endif %} {% endblock %}