{% 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 %} {% else %}
No destinations in this environment
{% endif %} {% if is_admin %}
Add destination to {{ env.name }}
{% endif %}
{% endfor %}
{% if orphan_destinations | length > 0 %}
Other destinations
{% endif %} {% else %}

No environments yet

Create your first environment below, or use forest env create from the CLI.

{% endif %} {% if is_admin %}
Create environment
{% endif %}
{% endblock %}