]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/views/commands.py
Improving the canned comments feature, now we can use Django style template syntax...
[osqa.git] / forum / views / commands.py
index 95895e382a92b072cc97520d1b6a893df57d4a4d..0e0108670a8cf016c17705509b3c910a197fd3e9 100644 (file)
@@ -493,31 +493,6 @@ def subscribe(request, id, user=None):
         }
     }
 
-@decorate.withfn(command)
-def canned_comments(request, post_id):
-    user = request.user
-
-    # Check whether the user has the required permissions to use the tool.
-    if not user.can_use_canned_comments:
-        raise CommandException(_("You cannot use the canned comments tool."))
-
-    if not request.POST:
-        canned_comments = []
-        for comment in settings.CANNED_COMMENTS:
-            canned_comments.append(smart_unicode(comment))
-
-        return render_to_response('node/canned_comments.html', {
-            'canned_comments' : canned_comments,
-        }, RequestContext(request))
-
-    comment = request.POST.get('comment', '')
-
-    return {
-        'commands' : {
-            'canned_comment' : [post_id, comment],
-        }
-    }
-
 #internally grouped views - used by the tagging system
 @ajax_login_required
 def mark_tag(request, tag=None, **kwargs):#tagging system