{% cache collections %} {% for collection in collections %}
{{ collection.name }} {% set author = [collection.author] if collection.author else [] %} {% trans users = users_list(author) %} by {{ users }} {% endtrans %}
{{ collection.description }}
{% with num=collection.addon_count %} {# L10n: {0} is the number of add-ons. #} {{ ngettext("{0} add-on", "{0} add-ons", num)|f(num|numberfmt)|safe }} {% endwith %} {% with num=collection.subscribers %} {# L10n: {0} is the number of subscribers. #} {{ ngettext("{0} follower", "{0} followers", num)|f(num|numberfmt)|safe }} {% endwith %}
{% endfor %} {% endcache %}