{% extends 'base.html' %} {% block content %}
{% include "sidenav.html" %}
{% include "appnav.html" %}

Contacts

{% for contact in contacts %} {% if forloop.counter0|divisibleby:3 %}
{% endif %}

person_pin{{contact.firstname}}

{% for number in contact.tel %}
{{number.type}} : {{number.number}}
{% endfor %}
{% endfor %}
{% endblock %}