search
unfold_less
{% if tags_form.tags.choices|count > 1 %}
{% endif %}
{% if apps %}
{# If tags are enabled, render the apps like this #}
{% if tags|count > 1 %}
{% for tag in tags %}
{% endfor %}
{% else %}
{# otherwise, render the apps like this #}
{% for app in apps %}
{% if app.type == "app" %}
{{ App(app) }}
{% elif app.type == "collection" %}
{{ Collection(app) }}
{% elif app.type == "custom" %}
{{ Custom(app) }}
{% endif %}
{% endfor %}
{% endif %}
{% else %}
{% endif %}
{% if tag.icon %} {{ tag.icon }} {% endif %} {{ tag.name }} keyboard_arrow_up
{% for app in apps %}
{% if app.tags and tag.name in app.tags %}
{% if app.type == "app" %}
{{ App(app) }}
{% elif app.type == "collection" %}
{{ Collection(app) }}
{% elif app.type == "custom" %}
{{ Custom(app) }}
{% endif %}
{% endif %}
{% endfor %}