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

{{ chapter }}


{% for attorney in attorneys %} {% if attorney.chapter == chapter %}
{{ attorney.name }}
{{ attorney.position }}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}