{% extends 'base.html' %} {% load charter_members_extra %} {% block body %}
{% for region in region %} {% if attorneys|filter_region:region|length > 0 %}

{{ region }}


{% for attorney in attorneys %} {% if attorney.region == region %}
{{ attorney.first_name }} {{ attorney.last_name }}
{{ attorney.position }}
{% endif %} {% endfor %}
{% endif %} {% endfor %} {% if other %}
{% for attorney in attorneys %} {% if not attorney.region %}
{{ attorney.first_name }} {{ attorney.last_name }}
{{ attorney.position }}
{% endif %} {% endfor %}
{% endif %}
{% endblock %}