{% extends "layouts/base.html" %} {% block title %} Announce and distribute {{ release.project.display_name }} {{ release.version }} ~ ATR {% endblock title %} {% block description %} Announce and distribute {{ release.project.display_name }} {{ release.version }} as a release. {% endblock description %} {% block stylesheets %} {{ super() }} {% endblock stylesheets %} {% block content %}

← Back to Finish {{ release.short_display_name }} FINISH

Announce {{ release.project.short_display_name }} {{ release.version }}

About this release preview

Revision: {{ release.revision }} Created: {{ release.created.strftime("%Y-%m-%d %H:%M:%S UTC") }}

Announce this release

This form will send an announcement to the ASF user-tests@tooling.apache.org mailing list.

{{ announce_form.hidden_tag() }}
{{ announce_form.mailing_list.label }}
{% for subfield in announce_form.mailing_list %}
{{ subfield(class_='form-check-input') }} {{ subfield.label(class_='form-check-label') }}
{% endfor %}
{% if announce_form.mailing_list.errors %}
{% for error in announce_form.mailing_list.errors %}{{ error }}{% endfor %}
{% endif %}
TODO: The limited options above are provided for testing purposes. In the finished version of ATR, you will be able to send to your own specified mailing lists.
{{ announce_form.subject(class_='form-control') }} {% if announce_form.subject.errors %}
{% for error in announce_form.subject.errors %}{{ error }}{% endfor %}
{% endif %}
{{ announce_form.body(class_='form-control font-monospace', rows='12') }} {% if announce_form.body.errors %}
{% for error in announce_form.body.errors %}{{ error }}{% endfor %}
{% endif %}
Show live preview

        
{{ announce_form.confirm_announce(class_="form-check-input") }} {{ announce_form.confirm_announce.label(class_="form-check-label") }}
{% if announce_form.confirm_announce.errors %}
{{ announce_form.confirm_announce.errors[0] }}
{% endif %}
{{ announce_form.submit(class_='btn btn-primary') }}
{% endblock content %} {% block javascripts %} {{ super() }} {% endblock javascripts %}