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

BUSA Officials

{% if officials %}
{% for official in officials %}
{% if official.image %} {% else %}
{% endif %}
{{ official.name }}

{{ official.get_position_display }}

{% if official.description %}

{{ official.description }}

{% endif %}
{% endfor %}
{% else %}
No officials have been added yet.
{% endif %}
{% endblock %}