{% extends 'layout.html' %} {% set title = 'Contacts | Contact Manager' %} {% set css = 'contacts.css' %} {% block content %}
| Name | Lastname | Phones | Category | Address | Favorite | Actions | |
|---|---|---|---|---|---|---|---|
| {{ contact.name }} | {{ contact.lastname or '-' }} | {{ contact.phones|join(' - ') }} | {{ contact.category }} | {{ contact.address or '-' }} | {{ contact.email or '-' }} | {% if contact.is_favorite %} Yes {% else %} No {% endif %} |