{% import "album_card.html" as album_card %} {% import "bookmark_card.html" as bookmark_card %} {% import "photo_card.html" as photo_card %} {% import "tag_card.html" as tag_card %} {% import "header.html" as header %} {{user.display_name}} {% if theme %}{% endif %} {{header.make_header(session=session)}}

{{user.display_name}}

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 %} {{photo_card.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 %} {{tag_card.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 %} {{album_card.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 %} {{bookmark_card.create_bookmark_card(bookmark)}} {% endfor %}
{% endif %}