{% extends "base.html.jinja" %} {% block content %} Environments & Destinations {% if environments | length > 0 %} {% for env in environments %} {{ env.name }} {% if env.description %} — {{ env.description }} {% endif %} order: {{ env.sort_order }} {% if env.destinations | length > 0 %} {% for dest in env.destinations %} {{ dest.name }} {% if dest.type_name %} {{ dest.type_name }}{% if dest.type_version %} v{{ dest.type_version }}{% endif %} {% endif %} {% if dest.metadata | length > 0 %} {{ dest.metadata | length }} key{% if dest.metadata | length != 1 %}s{% endif %} {% endif %} {% endfor %} {% else %} No destinations in this environment {% endif %} {% if is_admin %} Add destination to {{ env.name }} Name Type name (optional) Type org (optional) Type version Metadata (optional key-value pairs) Add row Create destination {% endif %} {% endfor %} {% if orphan_destinations | length > 0 %} Other destinations {% for dest in orphan_destinations %} {{ dest.name }} {{ dest.environment }} {% if dest.type_name %} {{ dest.type_name }}{% if dest.type_version %} v{{ dest.type_version }}{% endif %} {% endif %} {% endfor %} {% endif %} {% else %} No environments yet Create your first environment below, or use forest env create from the CLI. {% endif %} {% if is_admin %} Create environment Name Description (optional) Order Create {% endif %} {% endblock %}
No environments yet
Create your first environment below, or use forest env create from the CLI.
forest env create