{% extends "common/base.html" %} {% from "components/header.html" import header %} {% block head %} {{ super() }} {% endblock %} {% block content %} {{ header( title="Contacts", description="Manage your contacts and their information", button_text="Add New Contact", button_url=url_for('contacts.new_contact'), icon="fa-address-book", button_icon="fa-plus" ) }}
{% for user in users %} {% if user.email != current_user.email %} {% endif %} {% endfor %}
Name Contact Info Company Role Actions
{{ user.username }}
{{ user.username }} {{ user.last_name }}
{{ user.position or 'No position' }}
{{ user.email }} {% if user.phone %} {{ user.phone }} {% endif %}
{{ user.company or 'No company' }}
{{ 'Admin' if user.is_admin else 'Manager' if user.is_manager else 'User' }}
Edit
{% if user.email != current_user.email %} {% endif %}
{% if pagination and pagination.pages > 1 %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}