{% set locale = 'en' %} {% macro appCard(app, infos, timestamp_now, catalog) -%}

{{ infos['manifest']['name'] }}

{% if infos['level'] == 0 %} {% elif infos['level']|int <= 4 %} {% elif infos['level'] == 8 %} {% endif %} 123

{{ infos['manifest']['description']['en'] }}

{% if infos['category'] %} {{ catalog['categories'][infos['category']]['title'][locale].lower() }} {% endif %}
{%- endmacro %} {% extends "base.html" %} {% block main %}

Application Catalog

Sort by
Show only your bookmarks
{% for app, infos in catalog['apps'].items() %} {% if infos['level'] and infos['level'] > 4 %} {{ appCard(app, infos, timestamp_now, catalog) }} {% endif %} {% endfor %}

Applications currently broken or low-quality

There are apps which failed our automatic tests.
This is usually a temporary situation which requires packagers to fix something in the app.

{% for app, infos in catalog['apps'].items() %} {% if not infos['level'] or infos['level'] <= 4 %} {{ appCard(app, infos, timestamp_now, catalog) }} {% endif %} {% endfor %}
{% endblock %}