aboutsummaryrefslogtreecommitdiff
path: root/app/templates/threads/new.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/threads/new.html')
-rw-r--r--app/templates/threads/new.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/templates/threads/new.html b/app/templates/threads/new.html
new file mode 100644
index 0000000..22f5b72
--- /dev/null
+++ b/app/templates/threads/new.html
@@ -0,0 +1,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 %}