From b1c349cc3558b4642a700a489482ff95b038ce56 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Mon, 11 Jun 2018 22:49:25 +0100 Subject: Add comment system --- app/templates/threads/new.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/templates/threads/new.html (limited to 'app/templates/threads/new.html') 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.hidden_tag() }} + + {{ render_field(form.title) }} + {{ render_field(form.comment) }} + {{ render_field(form.private) }} + {{ render_submit_field(form.submit) }} + +

Only the you, the package author, and users of Editor rank and above can read private threads.

+
+{% endblock %} -- cgit v1.2.3