{% extends "layouts/base.html" %} {% block title %} Select a release ~ ATR {% endblock title %} {% block stylesheets %} {{ super() }} {% endblock stylesheets %} {% block content %}

Select a release

Welcome to the Apache Trusted Release (ATR) platform, designed to assist you through the process of releasing a new version of an Apache software project. Get started by selecting a release below.

{% if all_projects %} {% for item in all_projects %} {% set project = item.project %} {% set active_releases = item.active_releases %} {% set completed_releases = item.completed_releases %} {% set project_id = project.name|slugify %} {% set display_name_cleaned = project.display_name %} {% if display_name_cleaned and display_name_cleaned.lower().endswith(" (incubating)") %} {% set display_name_cleaned = display_name_cleaned[:-13] %} {% endif %}

{{ display_name_cleaned }} {% if project.is_podling or project.name.startswith("incubator-") %} (Incubating) {% elif project.super_project_name %} {% else %} {% endif %}

About this project / {% if project.super_project_name %} View super-project {% else %} Create a sub-project {% endif %} {% if completed_releases %} / Finished releases {% endif %}

{% for release in active_releases %} {% set current_phase_index = phase_index_map.get(release.phase, -1) %}
{{ release.version }}
{# set phase_symbols = ["1.", "2.", "3."] #} {% set phase_symbols = ["①", "②", "③"] %} {% set phase_labels = ["Compose", "Vote", "Finish"] %} {% if current_phase_index == 0 %} {{ phase_symbols[0] }} {% else %} {{ phase_symbols[0] }} {% endif %} {% if current_phase_index == 1 %} {{ phase_symbols[1] }} {% else %} {{ phase_symbols[1] }} {% endif %} {% if current_phase_index == 2 %} {{ phase_symbols[2] }} {% else %} {{ phase_symbols[2] }} {% endif %}
{% if current_phase_index == 0 %} {{ phase_labels[0] }} {% elif current_phase_index == 1 %} {{ phase_labels[1] }} {% elif current_phase_index == 2 %} {{ phase_labels[2] }} {% endif %}
{% endfor %}
Start a new release
{% endfor %} {% else %} {% endif %} {% endblock content %}