aboutsummaryrefslogtreecommitdiff
path: root/app/templates/packages/edit_maintainers.html
blob: db9a997eea3ec1a40b5601c7d74a0b418f43439b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% block title %}
	{{ _("Edit Maintainers") }}
{% endblock %}

{% from "macros/forms.html" import render_submit_field, render_field %}

{% block content %}
	<h1>{{ _("Edit Maintainers") }}</h1>

	<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 %}