This is my first time working with django signals and I would like to hook the \"comment_was_flagged\" signal provided by the comments app to notify me when a comment is flagged.
Is there a way to make Django automatically set the is_public field of the 开发者_Go百科comment as True.
I\'m using the django comments framework, and when I list the comments I want to include some of the information stored in auth_user. However, I find I need an extra query for each comment to get the
I want to use django.contrib.comments in a blogging application and customize the way the form is displayed. My problem is that I can\'t get the fields to display although displaying the hidden fields
I\'ve been reading on the django docs about the comments framework and how to customize it (http://docs.djangoproject.com/en/1.1/ref/contrib/comments/custom/)
I开发者_如何学Go am using the delete() function from django.contrib.comments.views.moderation module. The staff-member is allowed to delete ANY comment posts, which is completely fine. However, I woul
So I simply want to use the delete() from the django.contrib.comments.views.moderation module, but only allowing the users with permission to delete their comments. In order to do this, all I have to
I want to simply render a built-in comment form in a template, using Django\'s builtin commenting module, but this returns a TemplateSyntaxError Exception.
I am implementing the stock Django comments to an existing site. I\'d like comments to appear in multiple apps and models and have all the comments behave the same - i.e. an email sent, plus other b
So, I\'m using django.contrib.comments. I\'ve installed it OK but rather than the unwieldy default comment form, I\'d like to use a custom form template that just shows a textarea and submit button.