{% extends "base.html" %} {% block title %}Versions · {{ pipeline_name }}{% endblock %} {% block content %} {% from "partials/version_label.html" import render as version_label %}
Edit current · Dry-run lab · current {{ version_label(current_version, current_version_note) }} {% if running_version %}· running {{ version_label(running_version, running_version_note) }}{% endif %}
| Version | Created | Actions |
|---|---|---|
| {{ version_label(v.public_id, v.note, parent_id=v.parent_public_id) }} {% if v.public_id == current_version %}current{% endif %} {% if v.public_id == running_version %}running{% endif %} | {{ v.created_at }} | View {% if v.parent_public_id %} Diff vs parent {% endif %} Open in editor {% if v.public_id != current_version %} {% endif %} |