{# Dump all of the current recipe args as hidden fields If "excludes" is set, don't dump any fields with names in the sequence. If "exclude_prefix" is set, don't set any name that matches the prefix (e.g. "tagger-"). #} {% for name in recipe.args.keys() %} {% if (not excludes or name not in excludes) and (not exclude_prefix or not name.startswith(exclude_prefix)) %} {% endif %} {% endfor %}