{% set locale = 'en' %} {% extends "base.html" %} {% block main %}

{{ infos["manifest"]["name"] }}

{% if infos['category'] %} {{ catalog['categories'][infos['category']]['title'][locale].lower() }} {% endif %}
{% if infos['level'] == 0 %}
{% elif infos['level']|int <= 4 %}
{% elif infos['level'] == 8 %}
{% endif %}
{% set this_app_stars = stars.get(app_id, {})|length %} {% if user %} {% set user_starred_this_app = user['id'] in stars.get(app_id, {}) %} {% else %} {% set user_starred_this_app = False %} {% endif %} {% if not user_starred_this_app %} {{ this_app_stars }} {% else %} {{ this_app_stars }} {% endif %} {% if infos["manifest"]["upstream"]["demo"] %} Try the demo {% endif %}
Install
with

Current version: {{ infos["manifest"]["version"] }}

{% if infos["potential_alternative_to"] %}

Potential alternative to: {{ infos["potential_alternative_to"]|join(', ') }}

{% endif %}
{{ infos["full_description_html"]|safe }}
{% if infos["screenshot"] %} {% endif %} {% if infos["manifest"]["integration"]["architectures"] != "all" %}
This app is only compatible with these specific architectures : {{ infos["manifest"]["integration"]["architectures"]|join(', ') }}
{% endif %} {% if infos["manifest"]["integration"]["ram"]["build_binary"] >= 500 * 1024 * 1024 %}
This app requires an unusual amount of RAM to build : {{ infos["manifest"]["integration"]["ram"]["build"] }}
{% endif %} {% if infos["pre_install_html"] %}

Important infos before installing

{{ infos["pre_install_html"] | safe }}
{% endif %} {% if infos["antifeatures"] %}

Anti-features

(This app has features you may not like)

{% endif %}

Useful links

{% set upstream = infos["manifest"]["upstream"] %} License : {{ upstream.license }} {% if upstream.website %} Official website{% endif %} {% if upstream.admindoc %} Official admin documentation{% endif %} {% if upstream.userdoc %} Official user documentation{% endif %} {% if upstream.code %} Official code repository{% endif %} YunoHost package repository
{% endblock %}