{% extends 'base.html' %} {% load static %} {% block title %} My Contacts {% endblock title %} {% block content %}

Here are your contacts


{% if contacts %} {% for contact in contacts %} {% include 'partials/_card.html' %} {% endfor %} {% else %}

You have not save any contacts yet!

{% endif %}
{% endblock content %}