I am using the Django comments framework in two places on my site. After each submission, I\'d like for the user to just be redirected back to the original page they were on.
I am trying to redirect the user back to the page where the comment was posted. I found this post on Django\'s site but I am doing something wrong because it won\'t redirect back.
I\'m trying to order a list of items in django by the number of comments they have. However, there seems to be an issue in that the Count function doesn\'t take into account the fact that django comme
I\'m looking at implementing django-threadedcomments and am wondering if it is able to restrict threading to replies made by a moderator/owner, similar to how Yelp handles user reviews and business ow
I\'m customizing django comments. According to the docs you\'ll need to add your customized app to INSTALLED_APPS in settings.py, and set COMMENTS_APP to your app name.
I am looking at accessing the user who owns the content_type of a posted comment Currently I can access the user who posts, the comment, however I would like to notify the person who owns the item...
I have multiple models on a Django-powered webpage that have a django.contrib.comments form rendered for each.On this page, a post from one of these forms to /comments/post/ always res开发者_如何学编程
I\'ve happily used the neat comment moderation queue view supplied with contrib.comments in 1.0.x, but recently thought I\'d use it in a Django 1.2 site, only to discover that the view is no longer th
I am using the django comments system and everything is working ok apart from the comments are being added into the table with is_public being set to false.
How to provide reply option to the user so that they can comment for an existing开发者_StackOverflow comment ?Have a look at django-threadedcomments. Or if you want to save yourself a lot of hassle, l