{% extends 'base.html' %} {% load widget_tweaks %} {% block body %}

{{ attorney.first_name }} {{ attorney.last_name }}

{% if attorney.phone %}

{{ attorney.phone_formatted }}

{% endif %} {% if attorney.email %}

{{ attorney.email }}

{% endif %} {% if attorney.website %}

{{ attorney.website }}

{% endif %}

{{ attorney.first_name }} {{ attorney.last_name }}

{% if perms.charter_members.change_attorney or attorney.user == request.user %} Edit {% endif %}

{{ attorney.biography | safe }}

{% if perms.charter_members.change_attorney or attorney.user == request.user %} {% endif %} {% endblock %}