mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
a72b9a174a
Fixes #159
20 lines
419 B
HTML
20 lines
419 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Edit Maintainers") }}
|
|
{% endblock %}
|
|
|
|
{% from "macros/forms.html" import render_submit_field, render_field %}
|
|
|
|
{% block content %}
|
|
<h1>{{ _("Edit Maintainers") }}</h1>
|
|
|
|
<form method="POST" action="" class="tableform">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ render_field(form.maintainers_str) }}
|
|
|
|
<div>{{ render_submit_field(form.submit) }}</div>
|
|
</form>
|
|
{% endblock %}
|