{{ form.mailto_addresses.entries[0](size=30, class_="form-control" + (" is-invalid" if form.mailto_addresses[0].errors else "")) }}
{% if form.mailto_addresses[0].errors %}
{% for error in form.mailto_addresses[0].errors %}
{{ error }}
{% endfor %}
{% endif %}
Note: This field determines where vote and finished release announcement emails are sent. You can set this value to your own mailing list, but ATR will currently only let you send to user-tests@tooling.apache.org.
{{ form.manual_vote(class_="form-check-input") }}
If this is set then the vote will be completely manual and following policy is ignored.
{{ form.min_hours(class_="form-control" + (" is-invalid" if form.min_hours.errors else "") ) }}
The minimum time to run the vote, in hours. Must be 0 or between 72 and 144 inclusive. If 0, then wait until 3 +1 votes and more +1 than -1.
{% if form.min_hours.errors %}
{% for error in form.min_hours.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.release_checklist(rows=10, class_="form-control") }}
Markdown text describing how to test release candidates.
{{ form.start_vote_template(rows=10, class_="form-control") }}
Email template for messages to start a vote on a release.
{{ form.announce_release_template(rows=10, class_="form-control") }}
Email template for messages to announce a finished release.
{{ form.pause_for_rm(class_="form-check-input") }}
If enabled, RM can confirm manually if the vote has passed.