{# the class of the table can be also changed later through js's functions 'addClass', 'removeClass' #}
{% block extraHeaderFront %}
{# block for some extra headers, which should be in front of the normal headers #}
{% endblock %}
{# display the header defined in the DataTables class #}
{% for item in dt_structure %}
{{item.header}}
{% endfor %}
{% block extraHeaderBack %}
{# block for some extra headers, which should be after the normal headers #}
{% endblock %}
{% block extraFooterFront %}
{# block for some extra footers, which should be after the normal footers #}
{% endblock %}
{% for item in dt_structure %}
{% if item.searchable %}
{{item.header}}
{% else %}
{% endif %}
{% endfor %}
{% block extraFooterBack %}
{# block for some extra footers, which should be after the normal footers #}
{% endblock %}