{% extends 'base.html' %} {% block title %}Gallery{% endblock %} {% block content %}

BUSA Gallery

{% if images %}
{% for item in images %}

{{ item.caption }}

{% endfor %}
{% else %}
No gallery images available yet.
{% endif %}
{% endblock %}