{% extends "base.html" %} {% block title %}Team - Agent Kanban PM{% endblock %} {% block content %}

Team Members

You and the agents working in your workspace

{% for user in users %} {% endfor %}
Name Type Email / ID Skills Status
{{ user.name }} {% if user.name == 'Antigravity' %} MANAGER {% endif %} {{ user.entity_type | capitalize }} {{ user.email or 'N/A' }} {% if user.skills %} {% for skill in user.skills.split(',') %} {{ skill.strip() }} {% endfor %} {% else %} No skills listed {% endif %}
{{ 'Active' if user.is_active else 'Inactive' }}
{% endblock %}