{% extends "base.html.jinja" %} {% block content %} ← {{ project_name }} {{ artifact.title }} {% if artifact.version %} {{ artifact.version }} {% endif %} {{ artifact.slug }} {% if artifact.description %} {{ artifact.description }} {% endif %} {% if artifact.commit_sha or artifact.branch %} Git {% if artifact.branch %} Branch {{ artifact.branch }} {% endif %} {% if artifact.commit_sha %} Commit {{ artifact.commit_sha[:8] }} {% endif %} {% if artifact.commit_message %} Message {{ artifact.commit_message }} {% endif %} {% if artifact.repo_url %} Repository View repo {% endif %} {% endif %} {% if artifact.source_user or artifact.source_type %} Source {% if artifact.source_user %} Created by {{ artifact.source_user }} {% endif %} {% if artifact.source_email %} Email {{ artifact.source_email }} {% endif %} {% if artifact.source_type %} Type {{ artifact.source_type }} {% endif %} {% if artifact.run_url %} CI Run View run {% endif %} {% endif %} {% if artifact.web or artifact.pr %} Links {% if artifact.web %} Web {% endif %} {% if artifact.pr %} Pull request {% endif %} {% endif %} {% if artifact.destinations %} Destinations {% for dest in artifact.destinations %} {{ dest.environment }} {{ dest.name }} {% endfor %} {% endif %} Created {{ artifact.created_at }} {% endblock %}
{{ artifact.slug }}
{{ artifact.description }}
Created {{ artifact.created_at }}