{% load static %} {% load i18n %}
{% if team_members %}
{% for member in team_members %}
{% comment %}Profile Photo{% endcomment %} {% if member.ndr_image %}
{{ member.ndr_image.alt_text|default:member.title }}
{% endif %} {% comment %}Name{% endcomment %} {% if member.title %}
{{ member.title }}
{% endif %} {% comment %}Title/Position{% endcomment %} {% if member.text %}

{{ member.text }}

{% endif %} {% comment %}Biography (if enabled){% endcomment %} {% if show_bios and member.rich_text %}
{{ member.rich_text|safe }}
{% endif %} {% comment %}Links Section{% endcomment %}
{% endfor %}
{% else %}
No team members to display.
{% endif %}