{% extends "base.html" %} {% block title %}{{ org_nav_label }} — {{ app_name }}{% endblock %} {% block content %}

Workspaces and projects are different: a {{ org_entity_label|lower }} holds workspaces; each workspace holds projects (datasets, annotation, pipelines, training, models). {% if management_enabled %} Open a {{ org_entity_label|lower }} to manage members and create workspaces. {% endif %}

{% for org in tree.organizations %}

{{ org.name }}

{{ org.workspace_count }} workspaces · {{ org.project_count }} projects

Members Manage
{% if org.workspaces %}
{% for ws in org.workspaces %}

{{ ws.name }}

{{ ws.projects|length }} projects

    {% for p in ws.projects[:5] %}
  • {{ p.name }}
  • {% else %}
  • No projects yet
  • {% endfor %}
{% endfor %}
{% endif %}
{% else %}

No {{ org_nav_label|lower }} yet

{% if management_enabled %} Create your first {{ org_entity_label|lower }}, or complete initial setup. {% else %} Open Studio once to create the Personal organization and Default workspace. {% endif %}

{% endfor %} {% if management_enabled %}

New {{ org_entity_label|lower }}

{% endif %} {% endblock %} {% block scripts %} {% if management_enabled %} {% endif %} {% endblock %}