{% extends "base.html" %} {% block title %}Team - Agent Kanban PM{% endblock %} {% block content %}
You and the agents working in your workspace
| 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' }}
|