{% extends "base.html" %} {% block title %} {{ _("Application Wishlist") }} {% endblock %} {% block main %}

{{ _("Application Wishlist") }}

{{ _("The wishlist is the place where people can collectively suggest and vote for apps that they would like to see packaged and made available in YunoHost's official apps catalog. Nevertheless, the fact that apps are listed here should by no mean be interpreted as a fact that the YunoHost project plans to integrate it, and is merely a source of inspiration for packaging volunteers.") }}

{{ _("Sort by") }}
{{ _("Show only apps you starred") }}
{% for app, infos in wishlist.items() %} {% set this_app_stars = stars.get(app, {})|length %} {% if user %} {% set user_starred_this_app = user['id'] in stars.get(app, {}) %} {% else %} {% set user_starred_this_app = False %} {% endif %} {% endfor %}
{{ infos['name'] }} {{ infos['description'] }} {% if infos['website'] %} {% endif %} {% if infos['upstream'] %} {% endif %} {% if not user_starred_this_app %} {{ this_app_stars }} {% else %} {{ this_app_stars }} {% endif %}
{% endblock %}