{% 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" %} {% set _url = editor_url %} {% set _uid = workspace.uid %} {% set _class = "btn btn-primary" %} {% set _mode = editor.window_mode %} {% set _width = editor.window_width %} {% set _height = editor.window_height %} {% set _label = "Open editor" %} {% include "_editor_open.html" %}
{% else %}
{% endif %} {% if editor_password %} {{ editor_password }} {% endif %}

Editor

Your workspace opens a branded DevPlace editor with the dpc coding agent already running. These preferences are yours and follow you into every workspace you open.

{% if restart_required %}
Your editor settings changed. Restart the workspace to apply them.
{% endif %}

Container size

Set by an administrator through your workspace quota.

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 %}