2021-05-04 04:15:26 +02:00
|
|
|
{% extends "packages/package_base.html" %}
|
2018-03-20 03:58:31 +01:00
|
|
|
|
|
|
|
{% block title %}
|
2021-05-04 04:15:26 +02:00
|
|
|
{% if package %}
|
|
|
|
{{ _("Edit - %(title)s", title=package.title) }}
|
|
|
|
{% if not package and author != current_user %}
|
|
|
|
for {{ author.display_name }}
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{{ _("Create Package") }}
|
2018-04-03 15:56:43 +02:00
|
|
|
{% endif %}
|
2018-03-20 03:58:31 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-12-10 00:59:31 +01:00
|
|
|
{% from "macros/forms.html" import render_field, render_field_prefix_button, render_submit_field, form_scripts,
|
2021-02-05 17:19:34 +01:00
|
|
|
render_multiselect_field, package_lists %}
|
2018-12-22 12:23:58 +01:00
|
|
|
|
|
|
|
{% block scriptextra %}
|
|
|
|
{{ form_scripts() }}
|
|
|
|
{% if enable_wizard %}
|
2021-02-05 15:19:29 +01:00
|
|
|
<script src="/static/libs/url.min.js"></script>
|
2018-12-22 12:23:58 +01:00
|
|
|
<script src="/static/polltask.js"></script>
|
2021-02-28 03:36:31 +01:00
|
|
|
<script src="/static/package_create.js?v=5"></script>
|
2018-12-22 12:23:58 +01:00
|
|
|
{% endif %}
|
2020-12-10 00:59:31 +01:00
|
|
|
<script src="/static/package_edit.js?v=4"></script>
|
2018-12-22 12:23:58 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-03-20 03:58:31 +01:00
|
|
|
{% block content %}
|
2021-05-04 22:52:43 +02:00
|
|
|
{% if package %}
|
|
|
|
<h2 class="mt-0">{{ _("Edit Details") }}</h2>
|
|
|
|
{% else %}
|
|
|
|
<h2 class="mt-0">
|
|
|
|
{{ _("Create Package") }}
|
|
|
|
{% if author != current_user %}
|
|
|
|
for {{ author.display_name }}
|
|
|
|
{% endif %}
|
|
|
|
</h2>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-05-04 04:15:26 +02:00
|
|
|
{% if not package %}
|
|
|
|
<div class="alert alert-info">
|
|
|
|
<a class="float-right btn btn-sm btn-default" href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("View") }}</a>
|
2018-05-30 02:20:47 +02:00
|
|
|
|
2021-05-04 04:15:26 +02:00
|
|
|
{{ _("Have you read the Package Inclusion Policy and Guidance yet?") }}
|
|
|
|
</div>
|
|
|
|
{% else %}
|
2021-02-05 16:29:44 +01:00
|
|
|
<div class="alert alert-secondary">
|
|
|
|
<a class="float-right btn btn-sm btn-default" href="/help/package_config/#cdbjson">{{ _("Read more") }}</a>
|
|
|
|
|
|
|
|
{{ _("You can include a .cdb.json file in your %(type)s to update these details automatically.", type=package.type.value.lower()) }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-12-29 19:41:09 +01:00
|
|
|
<noscript>
|
|
|
|
<div class="alert alert-warning">
|
2019-07-29 22:44:39 +02:00
|
|
|
{{ _("Javascript is needed to improve the user interface, and is needed for features
|
|
|
|
such as finding metadata from git, and autocompletion.") }}<br />
|
|
|
|
{{ _("Whilst disabled Javascript may work, it is not officially supported.") }}
|
2018-12-29 19:41:09 +01:00
|
|
|
</div>
|
|
|
|
</noscript>
|
2018-05-27 22:31:11 +02:00
|
|
|
|
2018-05-29 21:51:42 +02:00
|
|
|
{{ package_lists() }}
|
2018-05-25 17:53:25 +02:00
|
|
|
|
2018-05-18 05:06:27 +02:00
|
|
|
<form method="POST" action="" class="tableform">
|
2018-03-20 03:58:31 +01:00
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
<fieldset>
|
2019-07-29 22:44:39 +02:00
|
|
|
<legend>{{ _("Package") }}</legend>
|
2018-12-22 12:23:58 +01:00
|
|
|
|
2018-12-29 20:06:17 +01:00
|
|
|
<div class="row">
|
|
|
|
{{ render_field(form.type, class_="pkg_meta col-sm-2") }}
|
|
|
|
{{ render_field(form.title, class_="pkg_meta col-sm-7") }}
|
2019-07-29 22:03:04 +02:00
|
|
|
{% if package and package.approved and not package.checkPerm(current_user, "CHANGE_NAME") %}
|
|
|
|
{{ render_field(form.name, class_="pkg_meta col-sm-3", readonly=True) }}
|
|
|
|
{% else %}
|
2020-01-24 19:03:40 +01:00
|
|
|
{{ render_field(form.name, class_="pkg_meta col-sm-3", pattern="[a-z0-9_]+", title=_("Lower case letters (a-z), digits (0-9), and underscores (_) only")) }}
|
2019-07-29 22:03:04 +02:00
|
|
|
{% endif %}
|
2018-12-29 20:06:17 +01:00
|
|
|
</div>
|
2019-01-29 04:00:01 +01:00
|
|
|
{{ render_field(form.short_desc, class_="pkg_meta") }}
|
2018-12-22 12:23:58 +01:00
|
|
|
{{ render_multiselect_field(form.tags, class_="pkg_meta") }}
|
2020-07-17 21:48:51 +02:00
|
|
|
{{ render_multiselect_field(form.content_warnings, class_="pkg_meta") }}
|
2018-12-29 20:06:17 +01:00
|
|
|
<div class="pkg_meta row">
|
|
|
|
{{ render_field(form.license, class_="not_txp col-sm-6") }}
|
|
|
|
{{ render_field(form.media_license, class_="col-sm-6") }}
|
2018-12-22 12:23:58 +01:00
|
|
|
</div>
|
2019-07-29 23:48:05 +02:00
|
|
|
<div class="pkg_meta row">
|
|
|
|
<div class="not_txp col-sm-6"></div>
|
|
|
|
<div class="not_txp col-sm-6">{{ _("If there is no media, set the Media License to the same as the License.") }}</div>
|
|
|
|
</div>
|
2018-12-29 20:06:17 +01:00
|
|
|
{{ render_field(form.desc, class_="pkg_meta", fieldclass="form-control markdown") }}
|
2018-12-22 12:23:58 +01:00
|
|
|
</fieldset>
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2020-08-18 17:14:47 +02:00
|
|
|
<fieldset class="mt-4">
|
2019-07-29 22:44:39 +02:00
|
|
|
<legend class="pkg_meta">{{ _("Repository and Links") }}</legend>
|
2018-05-27 23:48:53 +02:00
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
<div class="pkg_wiz_1">
|
2019-07-29 22:44:39 +02:00
|
|
|
<p>{{ _("Enter the repo URL for the package.
|
|
|
|
If the repo uses git then the metadata will be automatically imported.") }}</p>
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2019-07-29 22:44:39 +02:00
|
|
|
<p>{{ _("Leave blank if you don't have a repo. Click skip if the import fails.") }}</p>
|
2018-12-22 12:23:58 +01:00
|
|
|
</div>
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
{{ render_field(form.repo, class_="pkg_repo") }}
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
<div class="pkg_wiz_1">
|
2019-07-29 22:44:39 +02:00
|
|
|
<a id="pkg_wiz_1_next" class="btn btn-primary">{{ _("Next (Autoimport)") }}</a>
|
|
|
|
<a id="pkg_wiz_1_skip" class="btn btn-default">{{ _("Skip Autoimport") }}</a>
|
2018-12-22 12:23:58 +01:00
|
|
|
</div>
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
<div class="pkg_wiz_2">
|
2019-07-29 22:44:39 +02:00
|
|
|
{{ _("Importing... (This may take a while)") }}
|
2018-12-22 12:23:58 +01:00
|
|
|
</div>
|
2018-05-09 18:44:58 +02:00
|
|
|
|
2018-12-22 12:23:58 +01:00
|
|
|
{{ render_field(form.website, class_="pkg_meta") }}
|
|
|
|
{{ render_field(form.issueTracker, class_="pkg_meta") }}
|
2020-12-10 00:59:31 +01:00
|
|
|
{{ render_field_prefix_button(form.forums, class_="pkg_meta",
|
|
|
|
pattern="[0-9]+",
|
|
|
|
prefix=_("forum.minetest.net/viewtopic.php?t="),
|
|
|
|
placeholder=_("Tip: paste in a forum topic URL")) }}
|
2018-12-22 12:23:58 +01:00
|
|
|
</fieldset>
|
2018-09-15 00:10:30 +02:00
|
|
|
|
2020-12-10 00:59:31 +01:00
|
|
|
<div class="pkg_meta mt-5">{{ render_submit_field(form.submit) }}</div>
|
2018-12-22 12:23:58 +01:00
|
|
|
</form>
|
2018-03-20 03:58:31 +01:00
|
|
|
{% endblock %}
|