{% for category, group in categories.items %}
{% if category != 'projector' %}
{% with category_big=category|capfirst %}
{% trans category_big %}
{% endwith %}
{% for slides in group %}
{% if slides.control_template %}
{% include slides.control_template %}
{% endif %}
{% if not forloop.last %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% trans "Projector Live View" %}
{% trans 'Overlays' %}
{% for category, group in categories.items %}
{% if category == 'projector' %}
{% trans "Custom slides" %}
{% for slides in group %}
{% if slides.control_template %}
{% include slides.control_template %}
{% endif %}
{% if not forloop.last %}
{% endif %}
{% endfor %}