{% extends '::app.html.twig' %} {% block body %} {#This prints the table with header when option.header==1 #} {%if options['header'] == '1' %} {%for col in a[0]%} {%endfor%} {%for key,row in a%} {%if key=='0'%} {% else %} {%for col in row%} {%endfor%} {%endif%} {%endfor%} {%endif%} {#This prints the table without header when option.header==0 #} {%if options.header == '0' %} {%for row in a%} {%for col in row%} {%endfor%} {%endfor%} {%endif%}
{{col}}
{{col}}
{{col}}
{% endblock %}