{% extends "base.html" %} {% block copyright %} {% endblock %} {% block title %}{{ title }}{% endblock %} {% block extra_head %} {% endblock %} {% block body %}

{{ title }}

{% if err_msg %}
{{ err_msg|newlines }}
{% else %} {% if folio.description %}

{{ folio.description }}

{% endif %} {% if removed_count %}

Info {{ removed_count }} {% if removed_count == 1 %}image is{% else %}images are{% endif %} not shown because you do not have permission to view {% if removed_count == 1 %}it{% else %}them{% endif %}.

{% endif %}
{% for folio_image in folio.images %}
{{ folio_image.filename or folio_image.image.src|filename }}
{% else %}
There are no images to show.
{% endfor %}
{% endif %} {% endblock %}