The device-type template needs to be overridden by the device dictionary of each device of this type and is not a valid template for an individual device of this type.
      
      Not all methods may be available on all devices.
      
        - Deployment
- {{ dt|deploy_methods:'deploy'|join:", "|default:"..." }}
- Boot
- {{ dt|deploy_methods:'boot'|join:", "|default:"..." }}
Classes named in the default timeouts can be part of the pipeline description which is available from a test job definition, depending on the deployment or boot methods used by that job. 
      {% device_type_timeouts dt as timeout_data %}
      
        {% for timeout_type, action_data in timeout_data.items %}
        - {{ timeout_type }}
        
        {% for key, value in action_data.items %}
            - {{ key }}{% if value.seconds %}
- {{ value.seconds }} seconds{% else %}
- {{ value.minutes }} minutes{% endif %}
        {% endfor %}
 
{% endfor %}