django-comments

Allowing users to delete their own comments in Django

Allowing users to delete their own comments in Django Question: 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 give registered non-staff members the privilege to delete their OWN comment posts, and their OWN only. How …

Total answers: 4

How to put comments in Django templates?

How to put comments in Django templates? Question: I would like to comment this with a line: {% if something.property %} <table> <tr>… {% # this is a comment %} {% if something.property %} <table> <tr>… Asked By: Alex. S. || Source Answers: Comment tags are documented at https://docs.djangoproject.com/en/stable/ref/templates/builtins/#std:templatetag-comment {% comment %} this is a …

Total answers: 6