{% extends 'flickr/base.html' %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% block title %} The most common Flickr tags {% endblock %}

{% include 'ditto/includes/account_list.html' with account_list=account_list service_name='Flickr' only %}
{% if tag_list|length == 0 %}

There are no tags in use.

{% else %} {% load l10n %}
    {% for tag in tag_list %}
  1. {{ tag.name }} ({{ tag.num_times|localize }})
  2. {% endfor %}
{% endif %}
{% endblock content %}