I am using django comments apps to allow user to submit comments, but there is not any edit form for the comment. Does the comment app support an edit form or do I have to make one of my own.
Any help is appreciated.
I am using django comments apps to allow user to submit comments, but there is not any edit form for the comment. Does the comment app support an edit form or do I have to make one of my own.
Any help is appreciated.
This isn't built in to the comment app so it's something you'll have to write yourself. You will need to consider how to confirm that the person requesting to edit a comment actually wrote the comment. This is ok if you are dealing with logged in users but will be difficult for anonymous comments.