{% extends "base.html" %} {% block content %} {% if album_dir.children %}

Albums

{% for child in album_dir.children %}
{{child.path.name}}
{% endfor %}
{% endif %} {% if album_dir.images %}

Photos

{% for image in album_dir.images %}
{% endfor %}
{% endif %} {% endblock %}