Questions tagged [django-comments]

Django used to include a simple comments framework. Since Django 1.6, it's been separated to a separate project, use this tag for both. This framework can be used to attach comments to any model, so you can use it for comments on blog entries, photos, book chapters, or anything else.

Django used to include a simple, yet customizable comments framework. Since Django 1.6, it's been separated to a separate project, use this tag for both.

Comments are all "attached" to some parent object. This can be any instance of a Django model.

The primary interaction with the comment system is through a series of template tags that let you embed comments and generate forms for your users to post them.

Reference:

204 questions
0
votes
1 answer

Django: Error when trying to add a new app

I am trying to follow the steps here: http://dev.svetlyak.ru/optional-email-in-django-comments-en/ to make the "Email Address" field in the Django comments app optional. Specifically, I created a file called 'mycomments.py' with the following…
GChorn
  • 1,267
  • 1
  • 19
  • 36
0
votes
1 answer

Does django comments support pagination?

I wonder is it possible to only display for example the 10 latest comments on the page. And then the user can click, on demand, if he wants to view more comments? I was unsure what to search for therefore I ask it here instead. I'm using the comment…
starcorn
  • 8,261
  • 23
  • 83
  • 124
0
votes
1 answer

Why does a DOJO tools text area control break my forms

Hi I'm using django comments in one of my apps. I customized the comments framework to fit my needs. Everything works properly until I use dojo to make the textarea for the comments expandable…
jarred
  • 745
  • 2
  • 8
  • 19
-1
votes
1 answer

How To Solve Django ValueError: :Comment.post" must be a "Software" instance

I'm getting an error over and over again when I'm displaying comments for a program. Please what is the problem I made here? I made many attempts using get , filter but the error remains the same. Other errors may appear when changing the view of…
-1
votes
1 answer

django-comments add a new url and a view for comments?

i am newer and study django.when i install django_comments , i need add to add a new url and view for django_comments, but it don't work. comments folder structure: __init__.py __pycache__/ forms.py migrations/ models.py templates/ urls.py …
jett chen
  • 1,067
  • 16
  • 33
-1
votes
1 answer

Django Commenting framework and voting

I want to implement a commenting system for some pages by using the build-in commenting framework of Django. The only addition to the default commenting framework is that other registered users can up/down vote comments (one time allowed indeed),…
Hellnar
  • 62,315
  • 79
  • 204
  • 279
-2
votes
1 answer

How to stay at the same place of the page after you send post comment using Django-comments

Now I use next code in comments/form.html and after I post a new comment the page with content and comments list refreshes and I should scroll down to see my post. It's not what…
Oleg
  • 777
  • 1
  • 6
  • 10
-2
votes
1 answer

Same content for same user and same post in Django Comments not getting saved

I am using django_comments with Django 1.8. When a user posts a comment on the same target object(post) with the same content as of the any of his previous comments then it doesn't get saved in the database. Is there any constraint that I am…
cold_coder
  • 584
  • 4
  • 8
  • 24
-3
votes
2 answers

Passing Variables to Django Comment Views

Alright, I know I've asked similar questions, but I feel this is hopefully a bit different. I'm integrating django.comments into my application, and the more I play with it, the more I realize it may not even be worth my while at the end of the day.…
f4nt
  • 2,661
  • 5
  • 31
  • 35
1 2 3
13
14