{% include 'includes/message_display.html' %}
{% for category in categories %}
{% set category_count = namespace(value=0) %}
{% for app in apps %}
{% if app.show_on_application_page and app.category == category.name %}
{% set category_count.value = category_count.value + 1 %}
{% endif %}
{% endfor %}
{% if category_count.value > 0 %}
{{category.title}}
{% for app in apps %}
{% if app.show_on_application_page and app.category == category.name %}
{{app.name}}
{{app.short_description}}
{% if not product_key_skipped or product_key_skipped and not app.is_premium %}
Version {{app.latest_version}}
{% else %}
Premium Feature
{% endif %}
{% if app.is_manually_added %}
{% endif %}
{% if app.is_installed %}
{% endif %}