diff forums/views/main.py @ 1166:130ac1e98cf4

More V3 forums tweaking. Adding attachments is working now. Adding a post via ajax is working. Still need to display attachments on posts.
author Brian Neal <bgneal@gmail.com>
date Sun, 20 Aug 2017 15:55:54 -0500
parents 68811c583bfb
children
line wrap: on
line diff
--- a/forums/views/main.py	Tue Apr 18 20:13:59 2017 -0500
+++ b/forums/views/main.py	Sun Aug 20 15:55:54 2017 -0500
@@ -341,7 +341,7 @@
         _bump_post_count(request.user)
         _update_last_visit(request.user, form.topic, datetime.datetime.now())
 
-        return render(request, 'forums/display_post.html', {
+        return render(request, 'forums/display_post_v3.html', {
             'post': post,
             'can_moderate': perms.can_moderate(form.topic.forum, request.user),
             'can_reply': True,