{% comment %} Displays a table of number of Photos per year. Expects: * user -- Optional, a single Flickr User object, to restrict counts to that. {% endcomment %} {% load ditto_flickr %} {% load l10n %} {% if user %} {% annual_photo_counts nsid=user.nsid as photos %} {% else %} {% annual_photo_counts as photos %} {% endif %} {% if photos %}

Posted per year

{% for s in photos %} {% endfor %}
Year Photos
{{ s.year|unlocalize }} {{ s.count }}
{% endif %}