django-comments
What is the cleanest/simplest way to paginate django comments?
Using Django\'s built in comment framewor开发者_如何学Pythonk what is the cleanest/simplest way to the paginate comments?Or Django Endless Pagination:[详细]
2023-04-11 18:24 分类:问答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 commen开发者_运维问答t and rating system for a blog in Django. There are some apps that I can use to achieve this(Comment and R[详细]
2023-03-26 22:46 分类:问答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 rat开发者_运维问答her be taken to the page where the comment has been posted to, rather than t[详细]
2023-03-25 10:03 分类:问答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.[详细]
2023-03-23 20:50 分类:问答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?[详细]
2023-03-22 23:00 分类:问答authenticated commenting in Django
I\'d like to implement authenticated commenting in Django. I\'ve searched the net and found a few answers, includi开发者_如何转开发ng a few here on SO, but they are mostly from 2008 and 2009, on Djang[详细]
2023-03-02 02:11 分类:问答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[详细]
2023-03-01 19:39 分类:问答Django 'next' not working?
Not sure what\'s wrong here. I\'m using the built-in comment form. The form tag is like this: <form action=\"{% comment_form_target %}?next={% url post post.id %}\" method=\"post\">[详细]
2023-02-25 06:31 分类:问答Errors using built-in comment framework
I\'m trying to use the built-in comment framework but I cannot get it to work. Here\'s the code: #view.py[详细]
2023-02-25 05:23 分类:问答Django retrieve all comments for a user
I\'m using django-profiles and django.contrib.comments and I am trying to display all comments for a particular user in their profile.[详细]
2023-02-17 01:40 分类:问答