mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
20 lines
528 B
HTML
20 lines
528 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
New Thread
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% from "macros/forms.html" import render_field, render_submit_field %}
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ render_field(form.title) }}
|
|
{{ render_field(form.comment) }}
|
|
{{ render_field(form.private) }}
|
|
{{ render_submit_field(form.submit) }}
|
|
|
|
<p>Only the you, the package author, and users of Editor rank and above can read private threads.</p>
|
|
</form>
|
|
{% endblock %}
|