{% extends "base.html" %} {% block content %} {% if items %}
{% for item in items %}
{{ item.first_name }} {{ item.last_name or '' }} {% if item.company %}{{ item.company }}{% endif %} {% if item.role %}{{ item.role }}{% endif %} {% if item.email %}{{ item.email }}{% endif %}
Edit
{% endfor %}
{% else %}
👤
No contacts yet
Add Contact
{% endif %} {% endblock %}