changeset 1167:41f530c80517

V3 forums: forgot to commit new post form template.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Aug 2017 17:05:08 -0500
parents 130ac1e98cf4
children c855a88f9d78
files sg101/templates/forums/new_post_form.html
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sg101/templates/forums/new_post_form.html	Sun Aug 27 17:05:08 2017 -0500
@@ -0,0 +1,17 @@
+{% load core_tags %}
+<form action="." method="post">{% csrf_token %}
+   <fieldset class="fieldset">
+      <legend>Reply to Topic</legend>
+      {{ form.non_field_errors }}
+      {% post_box form.body %}
+      {{ form.topic_id }}
+      <input type="submit" value="Reply" id="forums-reply-post"
+         class="primary button" />
+      <fieldset class="fieldset">
+         <legend>Video Attachments</legend>
+         <p><a href="/forums/topic/18843/">Need help?</a></p>
+         <div id="attachment"></div>
+      </fieldset>
+   </fieldset>
+</form>
+{% include 'core/v3/post_box_modals.html' %}