{% comment %} Displays a list of the most popular tags. {% endcomment %} {% load ditto_pinboard %} {% load l10n %} {% popular_bookmark_tags limit=10 as tag_list %} {% if tag_list %}

The most common tags

    {% for tag in tag_list %}
  1. {{ tag.name }} ({{ tag.num_times|localize }})
  2. {% endfor %}

More…

{% endif %}