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

{{ company.name }} - User Management

{% for uc in user_companies %} {% endfor %}
Username Email Role Actions
{{ uc.user.username }} {{ uc.user.email }} {% if current_user.is_global_admin() or current_user.is_company_admin(company.id) %} {% else %} {{ uc.role }} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}