{% for tab_id, tab_data in tabset_data.items %}
{% if not tab_data.disabled %}
{% if tab_data.template %}
{% include tab_data.template with tab_data=tab_data %}
{% else %}
{% include 'scanpipe/tabset/tab_default.html' with tab_data=tab_data %}
{% endif %}
{% endif %}
{% endfor %}