{% import "header.html" as header %} {% import "cards.html" as cards %} {{user.display_name}} {% if theme %}{% endif %} {{header.make_header(session=request.session)}}

{{user.display_name}}

{% if user.display_name != user.username %}

Username: {{user.username}}

{% endif %}

ID: {{user.id}}

User since {{user.created|timestamp_to_naturaldate}}.

{% set photos = user.get_photos(direction='desc')|islice(0, 15)|list %} {% if photos %}

Photos by {{user.display_name}}

{% for photo in photos %} {{cards.create_photo_card(photo)}} {% endfor %}
{% endif %} {% set tags = user.get_tags(direction='desc')|islice(0, 100)|list %} {% if tags %}

Tags by {{user.display_name}}

{% for tag in tags %} {{cards.create_tag_card(tag, with_alt_description=True)}} {% endfor %}
{% endif %} {% set albums = user.get_albums()|islice(0, 20)|list %} {% if albums %}

Albums by {{user.display_name}}

{% for album in albums %} {{cards.create_album_card(album)}} {% endfor %}
{% endif %} {% set bookmarks = user.get_bookmarks()|islice(0, 50)|list %} {% if bookmarks %}

Bookmarks by {{user.display_name}}

{% for bookmark in bookmarks %} {{cards.create_bookmark_card(bookmark, add_author=False)}} {% endfor %}
{% endif %}