--- title: Application catalog template: docs taxonomy: category: docs routes: default: '/apps' twig_first: true process: twig: true ---
This page requires JavaScript enabled to display properly :s.
!!! The application packaging team will welcome your feedback! If you install an app and find issues or possible improvements, do not hesitate to contribute by reporting your issues directly on the corresponding code repositories. ! Applications flagged as low quality may be working, but they may not respect good packaging practices or lack integration of some features like backup/restore or single authentication. Be cautious when installing them. {% set catalog = read_file('/var/www/app_yunohost/apps/builds/default/doc_catalog/apps.json')|json_decode(true) %}
{% for app_id, infos in catalog.apps %} {% if grav.language.getActive in infos.description %} {% set descr_lang = grav.language.getActive %} {% else %} {% set descr_lang = 'en' %} {% endif %}
{% if infos.good_quality %} {% endif %} {{ infos.name }} {{infos.category}} {% if infos.broken %} broken {% else %} {% if infos.bad_quality %} low quality {% endif %} {% endif %}
{{ infos.description[descr_lang] }}
{% endfor %}
! If you don't find the app you are looking for, you can add it to the [apps wishlist](/apps_wishlist).