{% extends 'base.html' %} {% block body %}
{% for region in region %}

{{ region }}


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