{% if type == 'all' %} {% elif type == 'include' %} {% for file in files %} {% if file in scripts %} {% endif %} {% endfor %} {% elif type == 'exclude' %} {% for file in files %} {% if file not in scripts %} {% endif %} {% endfor %} {% endif %}