{% extends 'page_base.html' %} {% load static %} {% block page-subtitle %} : Members{% endblock %} {% block head-extras %} {% endblock %} {% block page-content %}

People associated with the Belfast Group

{% for person in people %}
{% if person.picture %}
{{ person.picture.image.alt_text }}
{% endif %}
{% if person.lastname and person.firstname %} {{ person.firstname }} {{ person.lastname }} {% else %} {{ person.name }} {% endif %} {# NOTE: would be nice to include count of connections/groupsheet; currently very SLOW #} {% comment %} {% if person.connected_people %}

{{ person.connected_people|length }} connected people

{% endif %} {% if person.connected_organizations %}

{{ person.connected_organizations|length }} connected organizations

{% endif %} {% endcomment %}
{# end caption #}
{# end thumbnail #}
{# end panel #} {% endfor %}
{# end bios #} {% endblock %} {% block endbody %} {% endblock %}