UI Template Filters

Is it possible to filter templates based on the exact type of template?
E.g. Job Template/Workflow Job Template.

I’ve tried using workflow_job_template, type:workflow_job_template but this filters don’t show workflow job templates.

Hi Fedor,

Yes, it is possible to filter templates based on their type but you wont be able to use the “type” field for that. You will have to use the “job_template” and “workflow_job_template” fields.
On the basis of the type of template that you want to list, you may use the associated “related field” and “id” model.
In order to list all the Job Templates you may use:

job_template.id:>0

In order to list all the Workflow Templates you may use:

workflow_job_template.id:>0

Hope this is helpful !

Thanks,
Shivharsh