{% extends "main.html" %} {%load static%} {% block title %}My Projects{% endblock %} {% block content %}

Address Book

{% for address in addresses %} {% endfor %}
Name Country Contact Groups Actions

{{ address.first_name }} {{ address.middle_name }} {{ address.last_name }}

{{address.country.name}}

{% for c in address.contact_set.all %}

{{c.type}}: {{c.contact}}

{% endfor %}
{% for g in address.group.all %}

{{g.name}}

{% endfor %}
{% endblock content %}