{% extends 'base.html.twig' %} {% block body_id 'stat' %} {# the homepage is a special page which displays neither a header nor a footer. this is done with the 'trick' of defining empty Twig blocks without any content #} {% block stylesheets %} {{ parent() }} {% endblock %} {% block header %} {% endblock %} {% block modal %}

ERROR

{% endblock %} {% block body %}
{% if id <= 0 %}
{% for query in queries %} {% if (loop.index % 2 == 0) %} {% else %} {% endif %} {% endfor %}
{{ 'Nome'|trans }} {{ 'Descrizione'|trans }}
{{ query.nome }} {{ query.descrizione }}
{% else %}






{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('stats') }} {% if id <= 0 %} {% else %} {% endif %} {% endblock %} {% block footer %} {% endblock %}