mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-11 01:53:47 +01:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Bulk Change Releases") }} - {{ package.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
<p class="mb-5">
|
|
{{ _("Use this page to set the min and max of all releases for your package.") }}
|
|
</p>
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
|
|
<form method="POST" action="">
|
|
{{ form.hidden_tag() }}
|
|
|
|
<div class="row">
|
|
{{ render_checkbox_field(form.set_min, class_="col-sm-2") }}
|
|
{{ render_field(form.min_rel, class_="col-sm-10") }}
|
|
</div>
|
|
<div class="row">
|
|
{{ render_checkbox_field(form.set_max, class_="col-sm-2") }}
|
|
{{ render_field(form.max_rel, class_="col-sm-10") }}
|
|
</div>
|
|
{{ render_checkbox_field(form.only_change_none) }}
|
|
|
|
<p id="minmax_warning" style="color:#f00; display: none;">
|
|
{{ _("Maximum must be greater than or equal to the minimum!") }}
|
|
</p>
|
|
|
|
<p class="mt-3">
|
|
{{ _("Note: Min and max versions will be used to hide the package on
|
|
platforms not within the range.") }}
|
|
<br />
|
|
{{ _("Leave both as None if in doubt.") }}
|
|
</p>
|
|
|
|
{{ render_submit_field(form.submit) }}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block scriptextra %}
|
|
<script src="/static/js/release_minmax.js"></script>
|
|
<script src="/static/js/release_bulk_change.js"></script>
|
|
{% endblock %}
|