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