diff gpp/forums/views.py @ 120:f8f4514b806a

Added a 24-hour time preference flag in the user profile. Added forum template tags for showing forum dates/times adjusted for the user's time zone.
author Brian Neal <bgneal@gmail.com>
date Sun, 25 Oct 2009 21:55:28 +0000
parents a3633f39f3ce
children b28d30848c57
line wrap: on
line diff
--- a/gpp/forums/views.py	Sat Oct 24 02:39:54 2009 +0000
+++ b/gpp/forums/views.py	Sun Oct 25 21:55:28 2009 +0000
@@ -218,6 +218,7 @@
         return render_to_response('forums/display_post.html', {
             'post': post,
             'can_moderate': _can_moderate(form.topic.forum, request.user),
+            'can_reply': True,
             },
             context_instance=RequestContext(request))