{% extends "base.html.jinja" %} {% block content %}
← {{ org_name }}

{{ project_name }}

Recent releases

{% if artifacts %}
{% for artifact in artifacts %}

{{ artifact.title }}

{% if artifact.version %} {{ artifact.version }} {% endif %}
{% if artifact.description %}

{{ artifact.description }}

{% endif %} {% if artifact.branch or artifact.commit_sha %}
{% if artifact.branch %} {{ artifact.branch }} {% endif %} {% if artifact.commit_sha %} {{ artifact.commit_sha[:8] }} {% endif %}
{% endif %} {% if artifact.source_user %}

by {{ artifact.source_user }}{% if artifact.source_type %} via {{ artifact.source_type }}{% endif %}

{% endif %} {% if artifact.destinations %}
{% for dest in artifact.destinations %} {{ dest.name }} ({{ dest.environment }}) {% endfor %}
{% endif %}

{{ artifact.slug }}

{{ artifact.created_at }}

{% endfor %}
{% else %}

No releases yet.

Create a release with forest release create

{% endif %}
{% endblock %}