{% extends 'base.html' %} {% load static %} {% block title %}Manage Collaborators{% endblock %} {% block local_css %} {% endblock %} {% block local_js_top %} {% endblock %} {% block content %}

Manage Collaborators

Environment Details
Environment Name: {{ environment_name }}
Add Collaborator
{% csrf_token %}
Email must end with @healthdatanexus.ai
Please enter a valid email ending with @healthdatanexus.ai
Collaborators
  • Email
    Actions
  • {% for collaborator in collaborators %} {% if collaborator|cut:"@healthdatanexus.ai" != workbench_owner_username %} {% with has_collaborators=True %}
  • {{ collaborator }}
    {% include "tag/collaborator_remove_modal_button.html" %}
  • {% endwith %} {% endif %} {% endfor %}
Back to Environments
{% endblock %} {% block local_js_bottom %}{% endblock %}