{{ branch }}
{% if branch.contact %}
- Contact
- {{ branch.contact }}
{% endif %}
{% for key, value in branch.data.items %}
- {{ key }}
- {{ value }}
{% endfor %}
{% if branch.has_children %}
{{ branch.get_children.count }}
child{{ branch.get_children.count|pluralize:'ren' }}
{% with num_descendants=branch.get_descendants %}
({{ num_descendants|length }} descendant{{ num_descendants|length|pluralize }})
{% endwith %}
{% endif %}