{% comment %}
Display information about a Flickr user.
Expects:
* user -- A single Flickr User object.
* account -- Optional, a Flickr Account object if this user has one.
* perms -- Optional, Django perms.
{% endcomment %}
{% load l10n %}
{{ user.name }}
{% if user.description %}
{{ user.description }}
{% endif %}
{% if user.location %}
{{ user.location }}
{% endif %}
First upload: {{ user.photos_first_date|date:"M Y" }}
First photo: {{ user.photos_first_date_taken|date:"M Y" }}
{% if account == None or account.is_active %}
{% if user.permalink %}