{{ number_to_text_with_suffix(third_parties|length) }} {% if third_parties|length != 1 %}{{ _("Third Parties") }}{% else %}{{ _("Third Party") }}{% endif %}


{% if third_parties %}
{% for third_party in third_parties %}

{{ third_party }}

{{ third_parties_infos[third_party]["description"]|markdown }}

{{ (_("Author(s): {author}")).format(author=third_parties_infos[third_party]["author"])}}

{{ _("Repo:") }} {{ third_parties_infos[third_party]["repo"] }}

{% for page in third_parties[third_party] %}

{% if third_parties[third_party][page].description %} {% endif %} {% endfor %}
{{ _("Page") }} {{ _("Description") }}
{{ page|replace("_", " ")|replace("-", " ")|title }} {{ third_parties[third_party][page].description|markdown }}
{% endfor %}
{% else %}

{{ _("There is no third party available currently.") }}

{% endif %}
{% block javascripts %} {% endblock %}