{% macro dev_heading(addon, amo) %}

{% set is_complete = not addon.is_incomplete() %} {% if is_complete %}{% endif %} {{ addon.name }}{% if is_complete %}{% endif %}

{% endmacro %} {% macro dev_item_info(addon, amo) %} {{ reviews_link(addon) }}

{% with num=addon.weekly_downloads %} {# L10n: {0} is the number of downloads. #} {{ ngettext("{0} weekly download", "{0} weekly downloads", num)|f(num|numberfmt)|safe }} {% endwith %}

{% with num=addon.average_daily_users %} {# L10n: {0} is the number of active users. #} {{ ngettext("{0} active user", "{0} active users", num)|f(num|numberfmt)|safe }} {% endwith %}

{% endmacro %}