{% extends "base.html" %} {% load scoped_tags %} {% block title %}Environments{% endblock %} {% block page_title %}Environments{% endblock %} {% block page_subtitle %}Ephemeral workspaces for isolated work (Layer 8){% endblock %} {% block layer_indicator %}L8 Environments{% endblock %} {% block content %}
{{ environments|length }} environment{{ environments|length|pluralize }}
{% if environments %}
{% for env in environments %} {% endfor %}
Name State Owner Ephemeral Created
{{ env.name|default:"Unnamed" }} {% if env.description %}

{{ env.description|truncatewords:12 }}

{% endif %}
{% include "components/_state_badge.html" with state=env.state %} {{ env.owner_id|truncate_id }} {% if env.ephemeral %} Yes {% else %} No {% endif %} {{ env.created_at|format_dt }}
{% else %} {% include "components/_empty_state.html" with title="No environments" message="Spawn an ephemeral workspace to isolate your work." %} {% endif %} {# Spawn modal #} {% endblock %}