{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Contacts

Add New Contact
{% for user in users %} {% endfor %}
Name Contact Info Company Status 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' }}
{% if user.email != current_user.email and not user.is_admin %}
{% else %} {{ 'Active' if user.is_active else 'Inactive' }} {% endif %}
{{ 'Admin' if user.is_admin else 'User' }}
Edit {% if user.email != current_user.email %}
{% endif %}
{% if pagination and pagination.pages > 1 %}
{% endif %}
{% endblock %}