Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
586 views

Django Comments: Want to remove user URL, not expand the model. How to?

I'm totally understanding the documentation on expanding the Comments app in Django, and really would like to stick with the automatic functionality but... In the current app, I have absolutely no ...
7
votes
3answers
1k views

How to extend the comments framework (django) by removing unnecesary 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/) In that page, it shows how to add new ...
4
votes
3answers
590 views

Allowing users to delete their own comments in Django

I 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 would also like to ...
3
votes
2answers
357 views

Django: Redirect after posting a comment

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. Where should the ...
3
votes
3answers
408 views

Django notification on comment submission

I am making use of Django's contrib.comments and want to know the following. Are there any utils or app out there that can be plugged into an app that sends you a notification when a comment is ...
3
votes
1answer
405 views

Django Comment, append symbol to the url comment?

im using the comment system, now, i would like to re-write the segment form the url comment and append a symbol #, i want to move the page seccion to the comment list exactly to the last comment user ...
2
votes
1answer
29 views

Django get_comment_list returns empty list

I've been pulling my hair out over this and can't figure out what's going on. In my view I can do this: from django.contrib.comments import Comment ... context['comments'] = ...
2
votes
2answers
237 views

how to make django comment model field Site not required

I'm using django-threadedcomments from ericflo on github. This app simply extends the native django comments framework. I am running into the same issue with both frameworks. I continue to get an ...
2
votes
1answer
82 views

Comments moderation queue view from django.contrib.comments - gone in 1.2?

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 ...
2
votes
2answers
193 views

django: How to make django comments not public by default

Using django comments framework http://docs.djangoproject.com/en/dev/ref/contrib/comments/ Not sure is there option, to make all comments non private before they passed moderation... Looks like all ...
2
votes
4answers
568 views

How to automatically accept comments from authenticated users in django.contrib.comments

Is there a way to make Django automatically set the is_public field of the comment as True. I only allow comments for registered users and would like to skip manual review of comments posted.
2
votes
2answers
238 views

How do I get django comments to join on auth_user

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 ...
2
votes
4answers
760 views

Django 1.1 - comments - 'render_comment_form' returns TemplateSyntaxError

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 need help debugging this error, please, ...
1
vote
1answer
58 views

Ordering entries via comment count with django

I need to get entries from database with counts of comments. Can i do it with django's comment framework? I am also using a voting application which is not using GenericForeignKeys i get entries with ...
1
vote
2answers
157 views

Comment and Rating system for Django

I am new to Django, I don't know a lot of them. I am trying to build a comment and rating system for a blog in Django. There are some apps that I can use to achieve this(Comment and Rating)? Please ...
1
vote
1answer
147 views

Django comments change success url

I would like to change the URL you are redirected to when django posts a comment successfully - I'd much rather be taken to the page where the comment has been posted to, rather than the current ...
1
vote
1answer
43 views

Django comments taking out new lines

So I've been working with Django-comments and I'm pretty happy, but a friend pointed out that when he posted something that was longer and had new lines, Django took them out. For example if I ...
1
vote
2answers
193 views

How to redirect back to same page when errors in Django comments

How do you get Django comments to redirect back to the same page where you're filling out a comment if there are errors in the comment submission form? So basically I have a template like this: {% ...
1
vote
1answer
141 views

filter objects by number of comments in Django

How do I filter queryset by the number of comments, and order by number of comments descending? I tried to do something like Post.objects.filter(comment_count > 0).order_by('-comment_count') but ...
1
vote
1answer
190 views

Can't render django-comment form

Can someone see what I am doing wrong here? What am I missing? # works {% get_comment_count for app.somemodel object_pk as comment_count %} {% get_comment_count for model as comment_count %} # ...
1
vote
0answers
82 views

How to use two different comment apps?

For example I want to use my custom comment app (with ranking features, threading, etc) in some pages and in other pages I want to use standard django comment app. How can i do this? thanks
1
vote
3answers
272 views

Threadedcomments - csrf token and user_name

I am using django-threadedcomments. Everything works fine except 2 things: csrf token and user template tag. Problem is, when user submits a comment, there is no csrf token for the form, so the form ...
1
vote
2answers
799 views

Django threaded comments - one level only

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 ...
1
vote
2answers
630 views

django: Adding simple captcha to django comments

I am trying to understand how it's possible to use http://code.google.com/p/django-simple-captcha/ with django comments. I have done all as described here: ...
1
vote
1answer
71 views

Should I remove 'django.contrib.comments' from my installed apps when I modify it by subclassing?

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. INSTALLED_APPS = [ ... ...
1
vote
1answer
178 views

Django notification comment get owner

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... ...
1
vote
0answers
107 views

Can django-comments handle multiple comment forms on the page?

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 results in: ...
1
vote
3answers
379 views

Django comments being spammed

I am using the built in comment system with Django but it has started to be spammed. Can anyone recommend anything I can use to stop this such as captcha for django etc. I'm looking for something ...
1
vote
0answers
94 views

Django - Two templates inheriting same parent, but nesting one another too?

I'm having some trouble with template inheritance. What I'm trying to achieve is a threaded comment system (using Django's comment framework). This requires comments who's DOM structure virtually ...
1
vote
1answer
284 views

Where to put Django comments moderation code?

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 ...
1
vote
1answer
167 views

Errors creating generic relations using content types (object_pk)

I am working to use django's ContentType framework to create some generic relations for a my models; after looking at how the django developers do it at django.contrib.comments.models I thought I ...
1
vote
1answer
643 views

Django comment moderation, not public

im trying moderation comment form the book of James Bennett, i think that all is fine, but the moderation comment is just for SPAM and the comments are public.. so , how ill put the comments always ...
1
vote
2answers
610 views

Django comments reverse relationship

When using django.contrib.comments is there anyway to add the reverse relationship to a model that has comments? For example: post = Post.objects.all()[0] comments = post.comments.all()
0
votes
1answer
35 views

Django comments not showing up in template

I'm having trouble getting my comments to display in my template. When I test an objects comment in the shell - a list of comments are returned and they seem fine. However in my template they don't ...
0
votes
1answer
13 views

Django comments in shell

I'm having trouble pulling comments into my template using django comments. I'd like to test some things out in the shell - ie. pulling in an object and getting the set of comments for it - but I'm ...
0
votes
3answers
50 views

django comment framework: distinct() does not work?

Running distinct() on any field of the comment model always returns all the records, Comment.objects.values('user').distinct() [{'user': 1}, {'user': 0}, {'user': 0}, {'user': 0}, {'user': ...
0
votes
1answer
26 views

How to provide a delete button for django built in comments framework

I am using django comment framework. It says it provides a lot of functionality, and I can also see in the source files that there are various options, but the documentation is a bit poor. There are ...
0
votes
2answers
17 views

Fetching Django-comments from all sites for a given object

I am sharing objects between different sites using the Django-sites framework. This works fine because I was able to define a many-to-many relationship within my models. However, while retrieving the ...
0
votes
1answer
33 views

Custom django comments admin slot

So I am using Djangos builtin comments app (django.contrib.comments) for my blog application. I made several changes to the forms display, etc. (as described in the documentation). One last thing that ...
0
votes
1answer
23 views

django-mptt-comments app error

I am trying to use django-mptt-comments app on my django project however I'm running into problems when I try posting a comment. I get the error : AttributeError: 'NoneType' object has no attribute ...
0
votes
0answers
32 views

How does django comment framework's anti-spoofing work?

In django comment framework, the CommentSecurityForm contains a 'timestamp' and a 'security_hash' field for the purpose of 'anti-spoofing', besides the commonly used CSRF toekn. What safety value does ...
0
votes
1answer
43 views

Linking Django comments with django users

I am using Django in built comments for allowing users to comment on my posts. I have also customized the app to do the following thing Registered users will see just the text area for comments ...
0
votes
0answers
36 views

django: customising multiple comments forms/models

In this scenario, I have 2 or more models: class Store(models.Model): name = models.CharField(max_length = 100) homepage = models.URLField(verify_exists = False) .... class ...
0
votes
1answer
18 views

Use custom Comment app and the default Comment from Django

I have a custom comment app but also want to use the original Comment app, without the added fields of my custom app. Is there a way to do this? Thanks!
0
votes
0answers
47 views

Is there a way to do comments with the @ symbol in Django?

Is there a way to customize the Django comments app to allow for directed comments? ie. @[username] to direct a comment at a specific user? Or is there a good Django app for comments that does this ...
0
votes
2answers
96 views

What is the cleanest/simplest way to paginate django comments?

Using Django's built in comment framework what is the cleanest/simplest way to the paginate comments?
0
votes
1answer
72 views

How to administer comment flags in django

So, I have django's comment framework enabled, and have flagging urls set up at : comments/flag/{{comment.id}}/ So far so good, the comments are registered, and appear in the database. However, ...
0
votes
1answer
78 views

django-comments questions

I've just implemented django-comments. settings.py INSTALLED_APPS = ( ... 'django.contrib.comments', ) product_detail.html {% get_comment_count for product as comment_count %} ...
0
votes
2answers
178 views

Django comments

I have a Django application with two models: the first one is django.contrib.auth.User and the second one is Product, created by me. For every product I would add the comments, so every User ...
0
votes
1answer
68 views

Creating “Comment” instances in Django for migration?

I currently have a bunch of old comments, that I need to migrate to django.contrib.comment and the plan was to manually create instances of Comment and then save it as follows: # assume some_content ...

1 2