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

Workspace: {{ project.title }}

{% if not has_workspace %}

No workspace yet for this project. Opening one starts a container with your project files, a browser editor, and a terminal.

You are using {{ workspace_count }} of {{ max_workspaces }} workspaces.

{% else %} {% if workspace.suspended %}
This workspace is suspended.

{{ workspace.flag_reason or "Contact an administrator." }}

{% endif %} {% for flag in workspace.flags %}
{{ flag.kind }} {{ flag.detail }}
{% endfor %}
{{ workspace.status }}
Disk {{ workspace.disk_percent }}% of {{ workspace.disk_quota_mb }} MB
Egress {{ workspace.egress_percent }}% of {{ workspace.egress_quota_mb }} MB

Stops after {{ workspace.idle_stop_minutes }} minutes idle. Removed after {{ workspace.retention_days }} days idle. {% if workspace.last_active_at %} Last active {{ dt_ago(workspace.last_active_at) }}. {% endif %}

{% if workspace.status == "running" %} Open editor
{% else %}
{% endif %} {% if editor_password %} {{ editor_password }} {% endif %}

Public tunnels

A tunnel publishes a port from inside your container on a public HTTPS address. Anyone with the link can reach it. You may have up to {{ workspace.max_tunnels }}.

Inside the container

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}