aboutsummaryrefslogtreecommitdiff
path: root/app/templates/threads/new.html
blob: 22f5b72b1f2c96afb62d872db1880261b5894234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}