mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
24 lines
747 B
HTML
24 lines
747 B
HTML
{% extends "packages/package_base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Edit Maintainers") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="mt-0">{{ _("Maintainers") }}</h2>
|
|
{% from "macros/forms.html" import render_submit_field, render_field %}
|
|
<p>
|
|
{{ _("Maintainers are given write access to the package.") }}
|
|
{{ _("Depending on their rank, they will be able to edit the package, create releases and screenshots, and read private threads.") }}
|
|
{{ _("Maintainers cannot add or remove other maintainers, but can remove themselves.") }}
|
|
</p>
|
|
|
|
<form method="POST" action="" class="tableform">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ render_field(form.maintainers_str) }}
|
|
|
|
<div>{{ render_submit_field(form.submit) }}</div>
|
|
</form>
|
|
{% endblock %}
|