Fix antifeatures list generation

This commit is contained in:
tituspijean
2022-08-05 16:39:38 +02:00
parent feb3abe7db
commit 43cde68aa7
3 changed files with 21 additions and 8 deletions

View File

@ -52,8 +52,9 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
{% if antifeatures -%}
## Antifeatures
{% for antifeature in antifeatures -%}
{% for antifeature in antifeatures.values() -%}
- **{{ antifeature.title }}**: {{ antifeature.description }}
{% endfor -%}
{% endif -%}

View File

@ -34,11 +34,13 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
{% if antifeatures -%}
## Fonctions indésirables
{% for antifeature in antifeatures -%}
{% for antifeature in antifeatures.values() -%}
- **{{ antifeature.title }}**: {{ antifeature.description }}
{% endfor -%}
{% endif -%}
## Documentations et ressources
{% if upstream.website -%}* Site officiel de l'app : {{ upstream.website }}