{% if tags_form.tags.choices|count > 1 %}
{% endif %}
{% if apps %}
{# If tags are enabled, render the apps like this #}
{% if tags_form.tags.choices|count > 1 %}
{% if settings.home_view_mode == "list" or current_user.home_view_mode == "list" %}
{% else %}
{% for tag in tags_form.tags.choices %}
{% if tag[0] != 'All tags' %}
{% endif %}
{% endfor %}
{% endif %}
{% else %}
{# otherwise, render the apps like this #}
{% if settings.home_view_mode == "list" or current_user.home_view_mode == "list" %}
{% else %}
{% for app in apps %}
{{ GridViewApp(app) }}
{% endfor %}
{% endif %}
{% endif %}
{% else %}
{% endif %}
{% for tag in tags_form.tags.choices %}
{% if tag[0] != 'All tags' %}
{{ tag[0] }}
{% for app in apps %}
{% if app.tags and tag[0] in app.tags %}
{{ ListViewApp(app) }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{{ tag[0] }}
{% for app in apps %}
{% if app.tags and tag[0] in app.tags %}
{{ GridViewApp(app) }}
{% endif %}
{% endfor %}
{% for app in apps %}
{{ ListViewApp(app) }}
{% endfor %}