{% import "photo_card.html" as photo_card %} {% import "header.html" as header %} Album {{album.title}} {{header.make_header(session=session)}}

{{album.title}}

{{album.description}}

{% set parent=album.parent() %} {% if parent %}

Parent: {{parent.id + " " + parent.title}}

{% else %}

Parent: Albums

{% endif %} {% set sub_albums = album.children() %} {% if sub_albums %}

Sub-albums

{% endif %} {% set photos = album.photos() %} Download: {% if photos %}These files{% endif %} {% if sub_albums %}Include children{% endif %} {% if photos %}

Photos

{% endif %}