{% extends "base.html" %} {% block main %}

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

{% if infos['category'] %} {{ catalog['categories'][infos['category']]['title']|localize|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: %(version)s", version=infos["manifest"]["version"]) }}

{% if infos["potential_alternative_to"] %}

{{ _("Potential alternative to: %(alternatives)s", alternatives=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: %(archs)s", archs=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 install: %(ram)s", ram=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: %(license)s", 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 %}