{% extends 'layout.html' %} {% set title = 'Contacts | Contact Manager' %} {% set css = 'contacts.css' %} {% block content %}
Logout

My Contacts

Add new
{% for contact in contacts %} {% endfor %}
Name Lastname Phones Category Address Email 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 %}
Edit
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% endblock %}