{% if can_manage_folders %}
{{ unlabelled_checkbox(
id='templates-or-folder-{}'.format(template_folder.id),
name='templates_and_folders',
value=template_folder.id,
) }}
{% endif %}
Folder containing {{ template_count }} template{% if template_count != 1 %}s{% endif %}
{% endfor %}
{% for template in templates %}
{% if can_manage_folders %}
{{ unlabelled_checkbox(
id='templates-or-folder-{}'.format(template.id),
name='templates_and_folders',
value=template.id,
) }}
{% endif %}
{{ message_count_label(1, template.template_type, suffix='')|capitalize }} template
{% endfor %}