{% extends "base.html.jinja" %} {% block content %} Destinations {# ── Create destination form (admin only) ─────────────────── #} {% if is_admin %} Add destination Name Environment staging preprod production Add {% endif %} {# ── Destination list ─────────────────────────────────────── #} {% if destinations | length > 0 %} {% for dest in destinations %} {{ dest.name }} {{ dest.environment }} {% if dest.artifact_title %} Last: {{ dest.artifact_title }} in {{ dest.project_name }} {% endif %} {% if dest.created_at %} {{ dest.created_at | timeago }} {% endif %} {% endfor %} {% else %} No destinations yet Destinations appear when releases are deployed with forest release create --dest {% endif %} {% endblock %}
Last: {{ dest.artifact_title }} in {{ dest.project_name }}
No destinations yet
Destinations appear when releases are deployed with forest release create --dest
forest release create --dest