{% extends "base.html" %} {% block title %} Create a release | {{ package.title }} {% endblock %} {% block content %}

Bulk Change Releases

Use this page to set the min and max of all releases for your package.

{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
{{ form.hidden_tag() }}
{{ render_checkbox_field(form.set_min, class_="col-sm-2") }} {{ render_field(form.min_rel, class_="col-sm-10") }}
{{ render_checkbox_field(form.set_max, class_="col-sm-2") }} {{ render_field(form.max_rel, class_="col-sm-10") }}

Note: Min and max versions will be used to hide the package on platforms not within the range. You cannot selected the oldest version for min or the newest version for max as this does not make sense - you can't predict the future.

{{ render_submit_field(form.submit) }}
{% endblock %} {% block scriptextra %} {% endblock %}